diff options
Diffstat (limited to 'app/components/topic_index')
| -rw-r--r-- | app/components/topic_index/topic_index.svelte | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/components/topic_index/topic_index.svelte b/app/components/topic_index/topic_index.svelte new file mode 100644 index 0000000..699550e --- /dev/null +++ b/app/components/topic_index/topic_index.svelte @@ -0,0 +1,7 @@ +<script> + export let params; +</script> + +<h1>Topic Index.</h1> +<p>This component lists topics for category or tag with id: {params.id}</p> + |