Remove prop types because I am not fancy

This commit is contained in:
Cassidy Williams
2022-11-27 23:31:10 -06:00
parent fb4eb7a8d3
commit afdb0e383d

View File

@@ -1,12 +1,6 @@
--- ---
import "../style/global.css"; import "../style/global.css";
export interface Props {
title: string;
description: string;
image?: string;
}
const { title, description, image = "/placeholder-social.jpg" } = Astro.props; const { title, description, image = "/placeholder-social.jpg" } = Astro.props;
--- ---