- Full-Stack React Projects
- Shama Hoque
- 32字
- 2021-06-25 21:45:16
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
}