Skip to content

Commit 613615e

Browse files
authored
Merge pull request #7 from CS3219-AY2324S1/6-add-question-list
add question list
2 parents 7586bc2 + d78a9a9 commit 613615e

File tree

2 files changed

+414
-1
lines changed

2 files changed

+414
-1
lines changed

src/App.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
import React from "react";
2-
import { Container } from "@mui/material";
2+
import { Container, Stack } from "@mui/material";
33
import Navbar from "./components/Navbar";
4+
import Titlebar from "./components/Questions/Titlebar";
45

56
export default function App() {
67
return (
78
<>
9+
<Stack gap={5}>
810
<Navbar />
11+
<Titlebar />
912
<Container>hello world!</Container>
13+
</Stack>
1014
</>
1115
);
1216
}

0 commit comments

Comments
 (0)