import React from 'react'; import Admonition from '@theme/Admonition'; const Component = ({ videoUrls, children }) => { return (
{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 πŸΏπŸ“½
{videoUrls ? ( videoUrls.map((url) => ( )) ) : ( You need to provide YouTube video URLs for this component to work properly. )}
); }; export default Component;