diff options
Diffstat (limited to 'src/components/CommitteeList/CommitteeList.astro')
| -rw-r--r-- | src/components/CommitteeList/CommitteeList.astro | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/CommitteeList/CommitteeList.astro b/src/components/CommitteeList/CommitteeList.astro new file mode 100644 index 0000000..f576c9a --- /dev/null +++ b/src/components/CommitteeList/CommitteeList.astro @@ -0,0 +1,8 @@ +--- +import committee from '$data/committee'; +import CommitteeListItem from './CommitteeListItem.astro'; +--- + +<ul> + {committee.map((committeeMember) => <CommitteeListItem committeeMember={committeeMember} />)} +</ul> |
