10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import './index.css'
|
|
import { AppSwitch } from './AppSwitch.tsx'
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<AppSwitch />
|
|
</StrictMode>,
|
|
)
|