Generic React Components
When props are generic like this:
The generic part can be specified in JSX like this:
See it? <CoolSelect<Fruit> options={fruits} />
Now when crafting the onChange
function in this example, it's type will be infered as this:
*This syntax is available in Typescript v2.9+
Tweet