0
抱怨我相信以下由流量被捕獲:流沒有不兼容的ReactClass使用和JSX
type MyProps = {
foo: boolean,
};
const makeComponent = (C: ReactClass<MyProps>) => <C />;
從閱讀the source,我相信我理解正確ReactClass
。
什麼給?這似乎也與React.createElement(C, {})
工作。另一方面,以下游:
import MyComponent from '...'; // this component has props MyProps
const makeComponent =() => <MyComponent />;
// and likewise with React.createElement