Skip to content

Instantly share code, notes, and snippets.

@koss-lebedev
Last active July 6, 2022 08:14
Embed
What would you like to do?
type Props = {
coverUrl: string
}
const Thumbnail = ({ coverUrl }: Props) => {
return <img src={coverUrl} />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment