Graphs Tab Storage (belongs to 44f96b6071)

This commit is contained in:
Neshura 2023-08-14 20:19:26 +02:00
parent 65df44707b
commit 6d5fc6f6f6
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -0,0 +1,5 @@
import { writable, type Writable } from "svelte/store";
const GraphsTabStore: Writable<string> = writable("");
export default GraphsTabStore;