From c09ab868d42a5c15f36e2ba9f55a9668da46e157 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 8 Aug 2023 20:43:00 +0100 Subject: Nicifies Lallans issues --- src/components/LallansIssueContributions.astro | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/components/LallansIssueContributions.astro (limited to 'src/components/LallansIssueContributions.astro') diff --git a/src/components/LallansIssueContributions.astro b/src/components/LallansIssueContributions.astro new file mode 100644 index 0000000..73634a2 --- /dev/null +++ b/src/components/LallansIssueContributions.astro @@ -0,0 +1,29 @@ +--- +import translate from "../i18n/translate"; +import tSite from '../i18n/translations/site'; +import type { Contribution } from '../types/LallansIssue'; +import type Locale from '../types/Locale'; + +interface Props { + contributions: Contribution[]; + locale: Locale; +} + +const { contributions, locale } = Astro.props; +const t = translate(locale); +--- + +
+

Contributions

+ +
\ No newline at end of file -- cgit v1.2.3