website/src/routes/admin/+page.svelte

8 lines
148 B
Svelte
Raw Normal View History

2023-01-25 22:41:11 +05:30
<script lang="ts">
import type { PageData } from "./$types";
2023-01-25 22:41:11 +05:30
export let data: PageData;
</script>
<h1>{data.title}</h1>
<p>Nothing here yet.</p>