Files
testing-tool/entrypoints/popup/main.tsx
T
2026-05-21 22:57:23 +08:00

12 lines
260 B
TypeScript

import ReactDOM from 'react-dom/client';
import AppRoot from '@/providers/AppRoot';
import '@/i18n';
import '@/src/index.css';
import App from './App.tsx';
ReactDOM.createRoot(document.getElementById('root')!).render(
<AppRoot>
<App />
</AppRoot>,
);