frontend/src/routes/user/[handle]/+page.svelte

13 lines
314 B
Svelte
Raw Normal View History

2025-03-27 23:10:40 -07:00
<script lang="ts">
2025-03-28 14:04:56 -07:00
import Activity from '$lib/components/activity.svelte';
import List from '$lib/components/list.svelte';
2025-03-27 23:10:40 -07:00
import type { PageProps } from './$types';
let { data }: PageProps = $props();
</script>
<h1>{data.handle}</h1>
2025-03-27 23:10:40 -07:00
<List sessions={data.sessions} />
2025-03-28 14:04:56 -07:00
<Activity activity={data.activity} />