blob: 314782a5942f766c6deff0e74176460f3ae128de (
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 class="btn bg-primary-500" type="submit"> Create Invitation </button>
</form>
<ul class="mt-4">
{#each invites as invite}
<li class="my-1"><Invite id={invite.id} /></li>
{/each}
</ul>
|