Created
July 6, 2022 08:17
-
-
Save koss-lebedev/df163d6d1f6efd2afd4d82e27b2531f6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Props = { | |
items: Array<Video | LiveStream> | |
} | |
const VideoList = ({ items }) => { | |
return ( | |
<ul> | |
{items.map(item => { | |
if ('coverUrl' in item) { | |
// it's a video | |
return <Thumbnail coverUrl={item.coverUrl} /> | |
} else { | |
// it's a live stream | |
return <Thumbnail coverUrl={item.previewUrl} /> | |
} | |
})} | |
</ul> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment