Skip to content Skip to sidebar Skip to footer

Proptypes Error When Using Material-ui

i just started a reactJS project and when i decided to use material-ui it statrted throwing a lot of errors like this one: bundle.js:12441 Warning: Failed Context Types: Calling P

Solution 1:

Try:

App.propTypes = {
  children: PropTypes.object.isRequired
};

Post a Comment for "Proptypes Error When Using Material-ui"