Getting “Cannot call a class as a function” in my React Project

后端 未结 30 1004
無奈伤痛
無奈伤痛 2020-12-07 16:34

I\'m trying to add a React map component to my project but run into an error. I\'m using Fullstack React\'s blog post as a reference. I tracked down where the error gets thr

30条回答
  •  佛祖请我去吃肉
    2020-12-07 16:50

    For me it was because i used prototype instead of propTypes

    class MyComponent extends Component {
    
     render() {
        return 
    Test
    ; } } MyComponent.prototype = { };

    it ought to be

    MyComponent.propTypes = {
    
    };
    

提交回复
热议问题