For me I was using the render
method and finding that this.props.match
was undefined
in rendered components. This was the solution for me, you have to pass in props
.
this.props.match
will be undefined
for:
}/>
Do this instead:
}/>
https://reacttraining.com/react-router/web/api/Route/render-func