aboutsummaryrefslogtreecommitdiff
path: root/src/components/topic_index/topic_index.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/topic_index/topic_index.svelte')
-rw-r--r--src/components/topic_index/topic_index.svelte8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/topic_index/topic_index.svelte b/src/components/topic_index/topic_index.svelte
new file mode 100644
index 0000000..3de83bb
--- /dev/null
+++ b/src/components/topic_index/topic_index.svelte
@@ -0,0 +1,8 @@
+<script>
+ export let params;
+ import ErrorBlock from '../error_block/error_block.svelte';
+</script>
+
+<ErrorBlock />
+<h1>Topic Index.</h1>
+<p>This component lists topics for category or tag with id: {params.id}</p>