mirror of
https://github.com/KevinMidboe/infra-map.git
synced 2026-02-13 19:59:23 +00:00
source, static files & Dockerfile
This commit is contained in:
15
src/routes/network/[id]/+page.svelte
Normal file
15
src/routes/network/[id]/+page.svelte
Normal file
@@ -0,0 +1,15 @@
|
||||
<script lang="ts">
|
||||
import PageHeader from '$lib/components/PageHeader.svelte';
|
||||
import type { PageData } from './$types';
|
||||
|
||||
let { data }: { data: PageData } = $props();
|
||||
|
||||
const { router } = data;
|
||||
</script>
|
||||
|
||||
<PageHeader>Network: {router.service}</PageHeader>
|
||||
|
||||
<div>
|
||||
<p>router:</p>
|
||||
<pre><code>{JSON.stringify(router, null, 2)}</code></pre>
|
||||
</div>
|
||||
Reference in New Issue
Block a user