2026-07-17 18:33:06 +02:00
|
|
|
import { StrictMode } from 'react'
|
|
|
|
|
import { createRoot } from 'react-dom/client'
|
2026-07-24 21:47:41 +02:00
|
|
|
import { LoginGate } from './LoginGate.tsx'
|
2026-07-17 18:33:06 +02:00
|
|
|
|
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
|
|
|
<StrictMode>
|
2026-07-24 21:47:41 +02:00
|
|
|
<LoginGate />
|
2026-07-17 18:33:06 +02:00
|
|
|
</StrictMode>,
|
|
|
|
|
)
|