Files
ReSekai/src/main.tsx
T
Alexej Wolff cc003ffbd5 first commit
2026-02-11 00:15:59 +01:00

11 lines
230 B
TypeScript

import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)