Last active
July 6, 2022 08:05
-
-
Save koss-lebedev/5262e8b0c792e1765faaf4da323f1bef 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 video={item} /> | |
} else { | |
// it's a live stream, but what can we do with it? | |
} | |
})} | |
</ul> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment