私は、次のエラーを得たこのようflowtypeを使用して、コンポーネントの反応コンテキストでプロップを定義する方法はありますか?
// @flow
type MyType = Object;
class CustomView extends React.Component {
static childContextTypes = {
someProp: MyType
}
getChildContext() {
return {
someProp: this.props.someProp
};
}
}
にcontextで小道具を定義するflowtypeを使用して:
は、だから私は、CustomView: type specification of child context
someProps
is invalid; the type checker function must returnnull
or anError
but returned a object. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).
propTypes.object
の代わり
Object
を使用するように強制しています。