mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-12 15:14:35 +01:00
(feat:layout) Clean up/improve layout scaffold
This commit is contained in:
@@ -9,7 +9,7 @@ import "@css/App.scss";
|
||||
|
||||
function App() {
|
||||
return (
|
||||
<div className={"App"}>
|
||||
<div class={"App"}>
|
||||
<TopBar />
|
||||
|
||||
<Routes>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
function InfoBoard() {
|
||||
return (
|
||||
<div className={"InfoBoard"}>
|
||||
<div class={"InfoBoard"}>
|
||||
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user