blob: 2c50286c4bf7e80cabba289ada981b034c60a752 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import '@fontsource-variable/fira-code';
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)
|