Files
uni-web-site/labs/lab8/src/main/Main.tsx
2026-04-16 20:07:10 +10:00

13 lines
275 B
TypeScript

import Navbar from "../components/Navbar";
import Gallery from "./components/Gallery";
import Content from "./components/Content";
function Main() {
return (
<div>
<Navbar active="1"/>
<Gallery/>
<Content/>
</div>
);
}
export default Main;