We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7586bc2 + d78a9a9 commit 613615eCopy full SHA for 613615e
src/App.tsx
@@ -1,12 +1,16 @@
1
import React from "react";
2
-import { Container } from "@mui/material";
+import { Container, Stack } from "@mui/material";
3
import Navbar from "./components/Navbar";
4
+import Titlebar from "./components/Questions/Titlebar";
5
6
export default function App() {
7
return (
8
<>
9
+ <Stack gap={5}>
10
<Navbar />
11
+ <Titlebar />
12
<Container>hello world!</Container>
13
+ </Stack>
14
</>
15
);
16
}
0 commit comments