feat: created react project sub directory

This commit is contained in:
2025-05-20 18:30:15 +02:00
parent 3cfc89eb39
commit 3f369de3fa
17 changed files with 3357 additions and 0 deletions

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