[frontend]: Initialise

This commit is contained in:
2025-02-27 11:42:24 +00:00
parent 3a760c0110
commit 34acee3d02
14 changed files with 5230 additions and 0 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>,
)