Files
Wdipl-react/main.tsx

10 lines
238 B
TypeScript
Raw Normal View History

2025-07-11 16:54:37 +05:30
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import './styles/globals.css'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)