From 6d5fc6f6f69fc1260e1f1b48e83da1916cfc39dd Mon Sep 17 00:00:00 2001 From: Neshura Date: Mon, 14 Aug 2023 20:19:26 +0200 Subject: [PATCH] Graphs Tab Storage (belongs to 44f96b6071c1cb23adad4bb65608dbe301441ba3) --- src/lib/stores/GraphsTab.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/lib/stores/GraphsTab.ts diff --git a/src/lib/stores/GraphsTab.ts b/src/lib/stores/GraphsTab.ts new file mode 100644 index 0000000..327798f --- /dev/null +++ b/src/lib/stores/GraphsTab.ts @@ -0,0 +1,5 @@ +import { writable, type Writable } from "svelte/store"; + +const GraphsTabStore: Writable = writable(""); + +export default GraphsTabStore; \ No newline at end of file