summaryrefslogtreecommitdiff
path: root/ui/routes/(app)/me/+page.svelte
blob: aded2929a94608ab6b422a8369fefe9ddb5fc763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<script>
  import LogOut from '$lib/components/LogOut.svelte';
  import Invites from '$lib/components/Invites.svelte';
  import ChangePassword from '$lib/components/ChangePassword.svelte';
</script>

<div class="mb-4">
  <ChangePassword />
</div>

<div class="mb-4">
  <Invites />
</div>

<div>
  <LogOut />
</div>