Scaffold Vite React frontend

This commit is contained in:
otivm
2026-04-25 11:36:09 +00:00
parent 5738d9faa6
commit 6725f11222
16 changed files with 2983 additions and 54 deletions

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