survey-webapp/SurveyFrontend/src/main.tsx
2025-04-05 19:31:48 +05:00

10 lines
238 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>,
)