Converted web app to react + js

This commit is contained in:
2026-03-27 07:47:39 +00:00
parent 5b31525fbc
commit b2f34e308e
434 changed files with 3218 additions and 225894 deletions

13
src/main.jsx Normal file
View File

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