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
}