summaryrefslogtreecommitdiff
path: root/src/components/Schedule.astro
blob: e4d90db66b7fe00f64cf4d89ad26c14104bd197d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
interface Props {
  entries: { time: string; description: string }[];
}

const { entries } = Astro.props;
---

<dl class="schedule">
  {
    entries.map((entry) => (
      <>
        <dt set:html={entry.time} />
        <dd set:html={entry.description} />
      </>
    ))
  }
</dl>