blob: 5c5d60182dc0f1b46d807fcd1f90474fd0a3f968 (
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>
{#each invites as invite}
<li><Invite id={invite.id} /></li>
{/each}
</ul>
|