summaryrefslogtreecommitdiff
path: root/ui/lib/components/ChannelList.svelte
blob: 9d1227e8b5327b3f32cfcd07293a4c6df62d0128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
	import Channel from './Channel.svelte';

	let { channels, active } = $props();
</script>

<nav class="list-nav">
	<ul>
		{#each channels as channel}
			<Channel {...channel} active={active === channel.id} />
		{/each}
	</ul>
</nav>