summaryrefslogtreecommitdiff
path: root/ui/routes/(swatch)/.swatch/Invite/+page.svelte
blob: 07861948e67fa1e1f74e83443108f045f2b38281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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>