mirror of
https://github.com/github-tijlxyz/khatru-pyramid.git
synced 2025-06-18 21:45:09 +00:00
15 lines
277 B
Svelte
15 lines
277 B
Svelte
![]() |
<script lang="js">
|
||
|
import TreeNode from "./TreeNode.svelte";
|
||
|
|
||
|
export let reload;
|
||
|
export let hierarchy;
|
||
|
</script>
|
||
|
|
||
|
<div class="px-4">
|
||
|
<ul class="list-disc ml-4">
|
||
|
{#each hierarchy as person (person.pk)}
|
||
|
<TreeNode {reload} {person} />
|
||
|
{/each}
|
||
|
</ul>
|
||
|
</div>
|