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 Component
with React.Component
.