import React from 'react'; import Admonition from '@theme/Admonition'; const Component = ({ videoUrls }) => { return (
{videoUrls ? ( videoUrls.map((url) => ( )) ) : ( You need to provide YouTube video URLs for this component to work properly. )}
); }; export default Component;