mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-31 00:16:47 +01:00
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import Admonition from '@theme/Admonition';
|
|
|
|
const Component = ({ videoUrls, children }) => {
|
|
return (
|
|
<article className="unleash-video-container">
|
|
<Admonition type="tip" title="Video content">
|
|
{children}
|
|
Hey! Did you know that the content in this guide is also
|
|
available in video format? If that's more your speed, feel free
|
|
to check out one of these related videos 🍿📽
|
|
</Admonition>
|
|
|
|
<div className="videos">
|
|
{videoUrls ? (
|
|
videoUrls.map((url) => (
|
|
<iframe
|
|
key={url}
|
|
width="100%"
|
|
height="auto"
|
|
src={url}
|
|
title="YouTube video player"
|
|
frameBorder="0"
|
|
allowFullScreen
|
|
></iframe>
|
|
))
|
|
) : (
|
|
<Admonition type="danger">
|
|
You need to provide YouTube video URLs for this
|
|
component to work properly.
|
|
</Admonition>
|
|
)}
|
|
</div>
|
|
</article>
|
|
);
|
|
};
|
|
|
|
export default Component;
|