Generic component

PHOTO EMBED

Wed Jun 22 2022 07:37:02 GMT+0000 (Coordinated Universal Time)

Saved by @sunareva

type GenericComponentProps<T> = {
   prop: T
   callback: (t: T) => void
}
const GenericComponent = <T>(props: GenericComponentProps<T>) => {/*...*/}
content_copyCOPY

https://github.com/facebook/create-react-app/pull/8177