diff options
| author | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-06-25 20:32:40 -0700 |
|---|---|---|
| committer | Brendan F <EpicWolverine@users.noreply.github.com> | 2023-06-25 20:32:40 -0700 |
| commit | 22b2c0f1eafbf9eece794a7cd8f86ea538785ce9 (patch) | |
| tree | c48298eba0da26bc0c019a360e4c3b5d7ebc1e06 /src/components/MiniYouTubePlayer | |
| parent | 153270c7ce105d882ededf156a9e9f7b86a3e84b (diff) | |
Rename YouTube -> MiniYouTubePlayer to reduce confusion
Diffstat (limited to 'src/components/MiniYouTubePlayer')
| -rw-r--r-- | src/components/MiniYouTubePlayer/index.tsx | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/components/MiniYouTubePlayer/index.tsx b/src/components/MiniYouTubePlayer/index.tsx new file mode 100644 index 0000000..0244524 --- /dev/null +++ b/src/components/MiniYouTubePlayer/index.tsx @@ -0,0 +1,24 @@ +import React from "react"; +import { default as YouTubePlayer } from "react-youtube"; + +interface Props { + id: string; +} + +export function MiniYouTubePlayer({ id }: Props) { + return ( + <div style={{ margin: "5% 0" }}> + <YouTubePlayer + videoId={id} + opts={{ + width: "336", + height: "189", + playerVars: { + autoplay: 1, + playsinline: 1, + }, + }} + /> + </div> + ); +} |
