diff options
Diffstat (limited to 'app/components/topic_index')
| -rw-r--r-- | app/components/topic_index/topic_index.svelte | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/components/topic_index/topic_index.svelte b/app/components/topic_index/topic_index.svelte index ea748a6..3de83bb 100644 --- a/app/components/topic_index/topic_index.svelte +++ b/app/components/topic_index/topic_index.svelte @@ -1,6 +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> |