summaryrefslogtreecommitdiff
path: root/src/components/CommitteeList/CommitteeList.astro
blob: f576c9af789a28fefd384bdbc302cf62f7cad04d (plain)
1
2
3
4
5
6
7
8
---
import committee from '$data/committee';
import CommitteeListItem from './CommitteeListItem.astro';
---

<ul>
  {committee.map((committeeMember) => <CommitteeListItem committeeMember={committeeMember} />)}
</ul>