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

13 lines
177 B
Svelte
Raw Normal View History

2025-03-27 23:10:40 -07:00
<script lang="ts">
import type { PageProps } from './$types';
let { data }: PageProps = $props();
</script>
<h1>{data.userData.handle}</h1>
<h2>{data.userData.did}</h2>