diff options
Diffstat (limited to 'src/components/YouTube')
| -rw-r--r-- | src/components/YouTube/index.tsx | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/components/YouTube/index.tsx b/src/components/YouTube/index.tsx deleted file mode 100644 index 13ffeaa..0000000 --- a/src/components/YouTube/index.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from "react"; -import { default as YouTubePlayer } from "react-youtube"; - -interface Props { - id: string; -} - -export function YouTube({ id }: Props) { - return ( - <div style={{ margin: "5% 0" }}> - <YouTubePlayer - videoId={id} - opts={{ - width: "336", - height: "189", - playerVars: { - autoplay: 1, - playsinline: 1, - }, - }} - /> - </div> - ); -} |
