Add real time messaging
This commit is contained in:
parent
0163eab540
commit
9153ba841d
61 changed files with 882 additions and 230 deletions
10
src/App.tsx
10
src/App.tsx
|
|
@ -1,15 +1,17 @@
|
|||
import { Route, Router } from "@solidjs/router";
|
||||
import type { Component } from "solid-js";
|
||||
import { MainView } from "./views/MainView";
|
||||
import { SettingsView } from "./views/SettingsView";
|
||||
import { StartView } from "./views/StartView";
|
||||
import { AppView } from "./views/AppView";
|
||||
import { LoginView } from "./views/LoginView";
|
||||
import { RegisterView } from "./views/RegisterView";
|
||||
|
||||
const App: Component = () => {
|
||||
return (
|
||||
<Router>
|
||||
<Route path="/" component={MainView} />
|
||||
<Route path="/settings" component={SettingsView} />
|
||||
<Route path="/" component={StartView} />
|
||||
<Route path="/app" component={AppView} />
|
||||
<Route path="/login" component={LoginView} />
|
||||
<Route path="/register" component={RegisterView} />
|
||||
</Router>
|
||||
);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue