Base layout
This commit is contained in:
parent
874bd18f11
commit
f1e90c4dd2
34 changed files with 2966 additions and 2725 deletions
10
src/App.tsx
10
src/App.tsx
|
|
@ -1,7 +1,15 @@
|
|||
import { Route, Router } from "@solidjs/router";
|
||||
import type { Component } from "solid-js";
|
||||
import MainView from "./views/MainView/MainView";
|
||||
import SettingsView from "./views/SettingsView/SettingsView";
|
||||
|
||||
const App: Component = () => {
|
||||
return <p></p>;
|
||||
return (
|
||||
<Router>
|
||||
<Route path="/" component={MainView} />
|
||||
<Route path="/settings" component={SettingsView} />
|
||||
</Router>
|
||||
);
|
||||
};
|
||||
|
||||
export default App;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue