Scaffold Vite + React + TypeScript frontend

This commit is contained in:
EugeneTes
2026-08-15 11:50:53 +00:00
parent a2b78fc856
commit a1ac658fce
19 changed files with 1993 additions and 0 deletions

10
frontend/src/main.tsx 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.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)