From 5df4ae4024bf7d09a49c587fb3ff4ef984ae92fe Mon Sep 17 00:00:00 2001 From: Korbs Date: Mon, 9 Dec 2024 17:09:37 -0500 Subject: [PATCH] Add Timeline component --- src/components/Timeline.astro | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/components/Timeline.astro diff --git a/src/components/Timeline.astro b/src/components/Timeline.astro new file mode 100644 index 0000000..fe094dc --- /dev/null +++ b/src/components/Timeline.astro @@ -0,0 +1,41 @@ +--- +const { + Date, + Time +} = Astro.props +--- + +
+

{Date} - {Time}

+ +
+ + \ No newline at end of file