13 lines
317 B
Svelte
13 lines
317 B
Svelte
<script>
|
|
import { getApp } from "../app";
|
|
let { channel, schemas } = $props();
|
|
const app = getApp();
|
|
</script>
|
|
|
|
<details name="example" open>
|
|
<summary>Content</summary>
|
|
{#each schemas as schema}
|
|
<div><a href={app.url("content/" + schema.id)}>{schema.name}</a></div>
|
|
{/each}
|
|
</details>
|