mirror of
https://github.com/hexolan/stocklet.git
synced 2026-03-26 19:51:17 +00:00
refactor: page routing
feat: base order and product view pages feat: base auth state
This commit is contained in:
7
web/src/routes/orders/[id]/+page.svelte
Normal file
7
web/src/routes/orders/[id]/+page.svelte
Normal file
@@ -0,0 +1,7 @@
|
||||
<script lang="ts">
|
||||
import type { PageProps } from './$types';
|
||||
|
||||
let { data }: PageProps = $props();
|
||||
</script>
|
||||
|
||||
<h1>Order ID: {data.id}</h1>
|
||||
Reference in New Issue
Block a user