From afdb0e383dc9436e7c06d56eb455e31e14170d37 Mon Sep 17 00:00:00 2001 From: Cassidy Williams <1454517+cassidoo@users.noreply.github.com> Date: Sun, 27 Nov 2022 23:31:10 -0600 Subject: [PATCH] Remove prop types because I am not fancy --- src/components/BaseHead.astro | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/components/BaseHead.astro b/src/components/BaseHead.astro index 5992927..64f2594 100644 --- a/src/components/BaseHead.astro +++ b/src/components/BaseHead.astro @@ -1,12 +1,6 @@ --- import "../style/global.css"; -export interface Props { - title: string; - description: string; - image?: string; -} - const { title, description, image = "/placeholder-social.jpg" } = Astro.props; ---