Initial commit

This commit is contained in:
Samuel 2024-12-08 11:27:16 +01:00
commit 28ec24b2c2
26 changed files with 4372 additions and 0 deletions

20
src/App.tsx Normal file
View file

@ -0,0 +1,20 @@
import { type Component } from "solid-js";
import { Route } from "@solidjs/router";
import { Home, Overview } from "./pages";
const App: Component = () => {
return (
<>
<Route
path="/"
component={Home}
/>
<Route
path="/overview"
component={Overview}
/>
</>
);
};
export default App;