Full-Stack React Projects
上QQ阅读APP看书,第一时间看更新

PropTypes validation

To validate the required injection of style declarations as props to the component, we add the PropTypes requirement validator to the defined component.

mern-skeleton/client/core/Home.js:

Home.propTypes = {
classes: PropTypes.object.isRequired
}