Round aggregator time range

This commit is contained in:
Guntis Smaukstelis
2023-05-17 23:56:57 +03:00
parent db3e2d4e0f
commit 4f7f6820b0
3 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ console.log("api host:", import.meta.env.VITE_API_HOST);
type Section = "aggregator" | "fileManager";
const App: Component = () => {
const [getSection, setSection] = createSignal<Section>("fileManager");
const [getSection, setSection] = createSignal<Section>("aggregator");
const section = () => getSection() === "aggregator" ? <Aggregator /> : <FileManager />;