(feat:layout) Clean up/improve layout scaffold

This commit is contained in:
KingRainbow44
2023-11-29 22:17:11 -05:00
parent 6a7097eae1
commit 6fd11bb6f5
3 changed files with 9 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ import "@css/App.scss";
function App() {
return (
<div className={"App"}>
<div class={"App"}>
<TopBar />
<Routes>

View File

@@ -1,6 +1,6 @@
function InfoBoard() {
return (
<div className={"InfoBoard"}>
<div class={"InfoBoard"}>
</div>
);

View File

@@ -1,21 +1,22 @@
import NewsFeed from "@components/NewsFeed.tsx";
import InfoBoard from "@components/InfoBoard.tsx";
import { Button } from "@fluentui/react-components";
function Launcher() {
return (
<div className={"App_Body"}>
<div class={"Launcher_Announcements"}>
<div>
<NewsFeed />
<InfoBoard />
<Button>
</Button>
</div>
<div>
<div class={"Launcher_Links"}>
</div>
<div class={"Launcher_QuickSettings"}>
</div>
</div>
</div>
);