React 高阶组件

withRouter

作用是将一个组件包裹进Route里面, 然后 react-router 的三个对象 history, location, match 就会被放进这个组件的props属性中。

@withRouter

效果同上,需yarn add babel-plugin-transform-decorators-legacy -S,并配置 .babelrc。

React PropTypes

类型约束。

你可能感兴趣的:(React 高阶组件)