import React from 'react' import VideoPlayer from './VideoPlayer' type Props = { srcs: string[] } const VideoGallery: React.FC = ({ srcs }) => { return (<>
{srcs.map((src, index) => (<>
))}) } export default React.memo(VideoGallery)