+
+
+
diff --git a/src/components/apps/Notes/store.ts b/src/components/apps/Notes/store.ts
new file mode 100644
index 00000000..4604cb98
--- /dev/null
+++ b/src/components/apps/Notes/store.ts
@@ -0,0 +1,24 @@
+import {writable} from 'svelte/store';
+
+let lastId = 0;
+
+type Note = {
+ id: number;
+ title: string;
+ text: string;
+}
+
+// Keys are ids and values are objects with id, title, and text properties.
+export const notesStore = writable