diff --git a/src/components/molecules/PostRow.astro b/src/components/molecules/PostRow.astro
index 558b926..c05c4cc 100644
--- a/src/components/molecules/PostRow.astro
+++ b/src/components/molecules/PostRow.astro
@@ -5,12 +5,13 @@ interface Props {
href: string;
deck?: string;
tag?: string;
+ searchText: string;
}
-const { date, title, href, deck, tag } = Astro.props;
+const { date, title, href, deck, tag, searchText } = Astro.props;
---
-
+
{date}
{title}