lab5 folder create

This commit is contained in:
=
2026-04-06 13:52:08 +10:00
parent f2aa7ae0c0
commit 2825e82487
20 changed files with 4112 additions and 0 deletions

10
labs/lab5/src/main.jsx Normal file
View File

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