diff --git a/src/components/YouTubeVideo.astro b/src/components/YouTubeVideo.astro new file mode 100644 index 000000000..9d4820c6a --- /dev/null +++ b/src/components/YouTubeVideo.astro @@ -0,0 +1,14 @@ +--- +interface Props { + id: string; +} + +const videoId = Astro.props.id; +--- + +