aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/MiniYouTubePlayer/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/MiniYouTubePlayer/index.tsx')
-rw-r--r--src/components/MiniYouTubePlayer/index.tsx24
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>
+ );
+}
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage