diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-03-09 22:43:12 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-03-09 22:43:12 +0100 |
| commit | bd8e98d7e24c4dbaee7db6ec7955f7c2f6d396a6 (patch) | |
| tree | e5f0dcbc14d3009c17e5f562404fe19f6aceab73 /src/components/topic_index | |
| parent | 862a5f9cdbbda522c608ea63c1e296e81f44de10 (diff) | |
Update to SvelteKit
Diffstat (limited to 'src/components/topic_index')
| -rw-r--r-- | src/components/topic_index/topic_index.svelte | 8 |
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> |