diff options
Diffstat (limited to 'ui/routes/(swatch)/.swatch/Invite/+page.svelte')
| -rw-r--r-- | ui/routes/(swatch)/.swatch/Invite/+page.svelte | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/ui/routes/(swatch)/.swatch/Invite/+page.svelte b/ui/routes/(swatch)/.swatch/Invite/+page.svelte new file mode 100644 index 0000000..0786194 --- /dev/null +++ b/ui/routes/(swatch)/.swatch/Invite/+page.svelte @@ -0,0 +1,21 @@ +<script> + import Invite from '$lib/components/Invite.svelte'; + + let id = $state('Iaaaa'); +</script> + +<h1><code>Invite</code></h1> + +<nav><p><a href=".">Back to swatches</a></p></nav> + +<h2>properties</h2> + +<div class="component-properties"> + <label>id <input type="text" bind:value={id} /></label> +</div> + +<h2>rendered</h2> + +<div class="component-preview"> + <Invite {id} /> +</div> |
