blob: 9718ce1003be55894f9d778fdbf7630e9482e7cc (
plain)
1
2
3
4
5
6
7
8
9
|
<script>
import LogOut from '$lib/components/LogOut.svelte';
import Invites from '$lib/components/Invites.svelte';
import ChangePassword from '$lib/components/ChangePassword.svelte';
</script>
<ChangePassword />
<Invites />
<LogOut />
|