Skip to content

Instantly share code, notes, and snippets.

@newerton
Last active September 15, 2022 18:09
Show Gist options
  • Save newerton/10eb22155317e57d5e6d13d47e4b3548 to your computer and use it in GitHub Desktop.
Save newerton/10eb22155317e57d5e6d13d47e4b3548 to your computer and use it in GitHub Desktop.
Interface segregation principle (ISP)
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