lab 6 started

This commit is contained in:
=
2026-04-10 21:35:46 +10:00
parent 484f291c21
commit ed282406d5
28 changed files with 4301 additions and 0 deletions

14
labs/lab6/src/App.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { useState } from 'react'
import logo from './images/logo.svg'
import NavBar from './components/Navbar.jsx'
import './styles/App.css'
function App() {
return (
<>
<NavBar />
</>
)
}
export default App