15 lines
300 B
TypeScript
15 lines
300 B
TypeScript
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import './index.css'
|
|
import AppRouter from './AppRouter'
|
|
import './i18n.ts';
|
|
import 'katex/dist/katex.min.css';
|
|
|
|
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<AppRouter />
|
|
</StrictMode>
|
|
)
|