mirror of
https://github.com/zvx-echo6/navi.git
synced 2026-05-20 22:54:42 +02:00
10 lines
229 B
React
10 lines
229 B
React
|
|
import { StrictMode } from 'react'
|
||
|
|
import { createRoot } from 'react-dom/client'
|
||
|
|
import './index.css'
|
||
|
|
import App from './App.jsx'
|
||
|
|
|
||
|
|
createRoot(document.getElementById('root')).render(
|
||
|
|
<StrictMode>
|
||
|
|
<App />
|
||
|
|
</StrictMode>,
|
||
|
|
)
|