created react template

This commit is contained in:
=
2026-04-02 21:40:21 +10:00
parent b5760c5b3f
commit 918a141a9f
16 changed files with 3251 additions and 0 deletions

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