diff --git a/src/components/features/GroupView.svelte b/src/components/features/GroupView.svelte new file mode 100644 index 0000000..0032a0c --- /dev/null +++ b/src/components/features/GroupView.svelte @@ -0,0 +1,49 @@ + + +
+ Group Name: +
{group.settings.name}
+
+
+ Tags: +
+ {#each sortedTagsList as tagName} + {tagName} + {/each} +
+
+
+ Prefixes: +
+ {#each sortedPrefixes as prefixName} + {prefixName}* + {/each} +
+
+ +