mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import App from './App'
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
)
|