summaryrefslogtreecommitdiff
path: root/src/components/CommitteeList/CommitteeList.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/CommitteeList/CommitteeList.astro')
-rw-r--r--src/components/CommitteeList/CommitteeList.astro8
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>