-
-
- The quick brown fox Qiii
-
- The quick brown fox Qiii
- The quick brown fox Qiii
- The quick brown fox Qiii
- The quick brown fox Qiii
- The quick brown fox Qiii
-
- The quick brown fox Qiii
-
+
+
diff --git a/gdn-app/src/components/CNote.vue b/gdn-app/src/components/CNote.vue
new file mode 100644
index 0000000..57a041f
--- /dev/null
+++ b/gdn-app/src/components/CNote.vue
@@ -0,0 +1,15 @@
+
+
+
+
+
•
+
+
{{ props.note.text }}
+
+
+
+
diff --git a/gdn-app/src/types.ts b/gdn-app/src/types.ts
new file mode 100644
index 0000000..cda19f4
--- /dev/null
+++ b/gdn-app/src/types.ts
@@ -0,0 +1,4 @@
+export type Note = {
+ text: string;
+ children: Note[];
+};