Files
web-bak/src/main.tsx
wdvipa 28040495c8 111
2026-02-09 16:33:52 +08: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>,
)