React-router: TypeError: Cannot set property 'props' of undefined React-router: TypeError: Cannot set property 'props' of undefined reactjs reactjs

React-router: TypeError: Cannot set property 'props' of undefined


Assuming you are importing Component as a React.Component correctly, try removing the parenthesis after Component.

Should be:

class Portfolio extends Component {

instead of:

class Portfolio extends Component () {

If not, replace Componentwith React.Component.