UI: add open clan button

This commit is contained in:
Johannes Kirschbauer
2024-06-08 15:24:13 +02:00
parent 75d34e6c32
commit f929502db4
6 changed files with 49 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
import { createSignal, type Component } from "solid-js";
import { CountProvider } from "./Config";
import { MachineProvider } from "./Config";
import { Layout } from "./layout/layout";
import { Route, Router } from "./Routes";
@@ -10,11 +10,11 @@ export { route, setRoute };
const App: Component = () => {
return (
<CountProvider>
<MachineProvider>
<Layout>
<Router route={route} />
</Layout>
</CountProvider>
</MachineProvider>
);
};