(feat:layout) Scaffold a good layout

This commit is contained in:
KingRainbow44
2023-11-29 21:52:46 -05:00
parent 91cb38c837
commit 49b2aba97f
18 changed files with 120 additions and 180 deletions

22
src/ui/App.tsx Normal file
View File

@@ -0,0 +1,22 @@
import { Route, Routes } from "react-router-dom";
import TopBar from "@components/TopBar.tsx";
import Launcher from "@ui/layout/Launcher.tsx";
import { PageRoutes } from "@app/constants.ts";
import "@css/App.scss";
function App() {
return (
<div className={"App"}>
<TopBar />
<Routes>
<Route path={PageRoutes.HOME} element={<Launcher />} />
</Routes>
</div>
);
}
export default App;