Oill_split / frontend /src /main.tsx
Utkarshres32's picture
Initial commit: AI-powered Oil Spill Detection and Monitoring System
7a5bb5d
raw
history blame contribute delete
230 Bytes
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>,
)