lab7 start (copied lab6)

This commit is contained in:
2026-04-14 11:08:41 +10:00
parent 4031d1497c
commit 400aca13a2
32 changed files with 4628 additions and 0 deletions

10
labs/lab7/src/main.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './styles/index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)