Last active
July 5, 2022 10:47
-
-
Save koss-lebedev/5662eb6483b1656eaf73fd36e2f65e22 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 = { | |
video: Video | |
} | |
const Thumbnail = ({ video }: Props) => { | |
return <img src={video.coverUrl} /> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment