forked from ProjectSegfault/website
9 lines
149 B
Svelte
9 lines
149 B
Svelte
<script lang="ts">
|
|
import type { PageData } from "./$types";
|
|
|
|
export let data: PageData;
|
|
</script>
|
|
|
|
<h1>{data.title}</h1>
|
|
<p>Nothing here yet.</p>
|