From d0975a6e7ee57de4debda94e823011d813fbf4a1 Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Sun, 5 Sep 2021 21:39:24 -0500 Subject: Initial rewrite in svelte --- src/stores.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/stores.ts (limited to 'src/stores.ts') diff --git a/src/stores.ts b/src/stores.ts new file mode 100644 index 0000000..f6c3a9b --- /dev/null +++ b/src/stores.ts @@ -0,0 +1,6 @@ +import { writable } from "svelte/store"; +import type Lab from "./models/Lab"; +import type PeerTeacher from "./models/PeerTeacher"; + +export const ptStore = writable(new Map()); +export const labStore = writable(new Map()); \ No newline at end of file -- cgit v1.2.3