Fetch csv files from date range input and use setTimeout

This commit is contained in:
Guntis Smaukstelis
2023-05-17 16:28:56 +03:00
parent affc2e0d93
commit ff3efdfb58
5 changed files with 78 additions and 2 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>("aggregator");
const [getSection, setSection] = createSignal<Section>("fileManager");
const section = () => getSection() === "aggregator" ? <Aggregator /> : <FileManager />;