diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-03-13 15:28:29 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-03-13 15:28:29 +0100 |
| commit | c1bc5993a694f6fd047a3881351827058042483b (patch) | |
| tree | 3d64130e1e6a2f86f70981df28cf22cd535bf2b2 /src/pages/g | |
| parent | bd8e98d7e24c4dbaee7db6ec7955f7c2f6d396a6 (diff) | |
Use routify and GraphQL server
Diffstat (limited to 'src/pages/g')
| -rw-r--r-- | src/pages/g/[id].svelte | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pages/g/[id].svelte b/src/pages/g/[id].svelte new file mode 100644 index 0000000..04fda92 --- /dev/null +++ b/src/pages/g/[id].svelte @@ -0,0 +1,6 @@ +<script> + export let id; +</script> + +<h1>Tag Index.</h1> +<p>This component lists topics for tag with id: {id}</p> |