目前Date在反应中验证道具的首选方法是什么?
Date
现在我正在使用:React.PropTypes.object
React.PropTypes.object
然而,这现在不符合forbid-prop-types lint 规则。我应该使用ashape还是有更好的方法?
shape
很确定你可以使用PropTypes.instanceOf(Date)
PropTypes.instanceOf(Date)