This commit is contained in:
2025-03-29 17:48:21 +08:00
parent a12d23be73
commit ac4542c6ff
256 changed files with 1361 additions and 214 deletions

View File

@@ -1,6 +1,15 @@
import { createRoot } from 'react-dom/client';
import { App } from './App.tsx';
import { ToastContainer } from 'react-toastify';
import './index.css';
import { I18NextProvider, initI18n } from '@kevisual/components/translate/index.tsx';
import { basename } from './modules/basename';
createRoot(document.getElementById('root')!).render(<App />);
createRoot(document.getElementById('root')!).render(
<>
<I18NextProvider basename={basename} noUse={false}>
<App />
</I18NextProvider>
<ToastContainer />
</>,
);