mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-06-17 22:29:32 +07:00
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
|
import { StrictMode } from 'react'
|
||
|
import { createRoot } from 'react-dom/client'
|
||
|
import App from './app/app.tsx'
|
||
|
|
||
|
createRoot(document.getElementById('root')!).render(
|
||
|
<StrictMode>
|
||
|
<App />
|
||
|
</StrictMode>,
|
||
|
)
|