aboutsummaryrefslogtreecommitdiff
path: root/src/components/PostElement.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/PostElement.astro')
-rw-r--r--src/components/PostElement.astro5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/PostElement.astro b/src/components/PostElement.astro
index 889cc47..2f98130 100644
--- a/src/components/PostElement.astro
+++ b/src/components/PostElement.astro
@@ -1,6 +1,11 @@
---
+import { type CollectionEntry } from "astro:content";
import dayjs from "dayjs";
+type Props = {
+ readonly post: CollectionEntry<"blog">;
+};
+
const { post } = Astro.props;
---