summaryrefslogtreecommitdiff
path: root/ui/lib/components/ChannelList.svelte
blob: 51dd6cf48ad0a92c62a644be7c38233dac42440b (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>