mirror of https://github.com/TZGyn/shortener
added links route
parent
eb6312d2d1
commit
6205687d50
@ -0,0 +1,5 @@
|
|||||||
|
import type { PageServerLoad } from './$types'
|
||||||
|
|
||||||
|
export const load = (async () => {
|
||||||
|
return {}
|
||||||
|
}) satisfies PageServerLoad
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
import type { PageData } from './$types'
|
||||||
|
import { Separator } from '$lib/components/ui/separator'
|
||||||
|
|
||||||
|
export let data: PageData
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="p-8 text-4xl font-bold">Links</div>
|
||||||
|
<Separator />
|
||||||
Loading…
Reference in New Issue