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 c7c168c + 613615e commit b18878eCopy full SHA for b18878e
src/App.tsx
@@ -1,14 +1,19 @@
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 Home from "./components/Home";
5
import './App.css';
6
+import Titlebar from "./components/Questions/Titlebar";
7
8
export default function App() {
9
return (
- <div className="App">
10
+ <>
11
+ <Stack gap={5}>
12
<Navbar />
13
+ <Titlebar />
14
<Home/>
- </div>
15
+ <Container>hello world!</Container>
16
+ </Stack>
17
+ </>
18
);
19
}
0 commit comments