Files
Wdipl-react/main.tsx
priyanshuvish 8a5bb95a0e first commit
2025-07-11 16:54:37 +05:30

10 lines
238 B
TypeScript

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>,
)