blob: 78614485a811538aec3d1d1d349e25f887155555 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<script>
import { createInvite } from '$lib/apiServer';
import Invite from '$lib/components/Invite.svelte';
let invites = $state([]);
async function onsubmit(event) {
event.preventDefault();
let response = await createInvite();
if (response.status == 200) {
invites.push(response.data);
}
}
</script>
<form {onsubmit}>
<button type="submit">create invitation</button>
</form>
<ul class="invite-list">
{#each invites as invite}
<li><Invite id={invite.id} /></li>
{/each}
</ul>
|