this is my route:
<Route path="/about-cards/:id?" component={AboutCards} />
then this is my url:
http://localhost:3000/about-cards?id=1
inside my AboutCards component:
componentDidMount() {
console.log('this.props.match.params.id',this.props.match.params.id)
but it print a undefined