## Proposal Now there is no possibility to explicitly specify the generic type for the component. This syntax can solve the problem: ```js <MyComponent<T> />; ``` I can be rea ## Use case ```js // @flow import React from 'react'; class MyComponent<T> extends React.Component<{| +item: T |}>{ } <MyComponent<number> item={1} />; // work good <MyComponent<string> item={1} />; // error ```