diff options
| author | Joe Carstairs <jcarstairs@scottlogic.com> | 2023-08-08 20:43:00 +0100 |
|---|---|---|
| committer | Joe Carstairs <jcarstairs@scottlogic.com> | 2023-08-08 20:43:09 +0100 |
| commit | c09ab868d42a5c15f36e2ba9f55a9668da46e157 (patch) | |
| tree | 5816ce5138a30a6c887ea947a3f572e5a150139f /src/components/LallansIssueContributors.astro | |
| parent | a2d76427279e15fa0bd46faa64f3e417f33aaa4a (diff) | |
Nicifies Lallans issues
Diffstat (limited to 'src/components/LallansIssueContributors.astro')
| -rw-r--r-- | src/components/LallansIssueContributors.astro | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/LallansIssueContributors.astro b/src/components/LallansIssueContributors.astro new file mode 100644 index 0000000..4149e11 --- /dev/null +++ b/src/components/LallansIssueContributors.astro @@ -0,0 +1,18 @@ +--- +import type { Contributor } from '../types/LallansIssue'; + +interface Props { + contributors: Contributor[]; +} + +const { contributors } = Astro.props; +--- + +<section class="lallans-contributors"> + <h2>Contributors</h2> + <ul> + { contributors.map(contributor => ( + <li>{ contributor }</li> + ))} + </ul> +</section>
\ No newline at end of file |
