vercel / react-tweet

Embed tweets in your React application.
https://react-tweet.vercel.app
MIT License
1.52k stars 83 forks source link

Design of the `TweetComponents` type #59

Closed tywayne closed 1 year ago

tywayne commented 1 year ago

The TweetComponents type is used for the components prop on both Tweet and EmbeddedTweet. It has an optional slot for providing a TweetNotFound component, but TweetNotFound is only ever used by Tweet, not EmbeddedTweet.

IMO it is confusing to allow a prop to be passed to a component that is never utilized. I can see a consumer passing something to that slot, expecting it to do something. I think a better design would be to maintain separate types for the components prop of Tweet and EmbeddedTweet.