This commit is contained in:
Mann Patel
2025-02-19 12:33:38 -07:00
parent 113717fdca
commit f7a9c33df3
18 changed files with 4874 additions and 3 deletions

10
frontend/src/main.jsx Normal file
View File

@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.jsx'
createRoot(document.getElementById('root')).render(
<StrictMode>
<App />
</StrictMode>,
)