score:0

fixed it-

    <route path='/contacts/:name' render={(props) => (
      <div>hello, { props.match.params.name } </div>
    )} />

score:0

it would be part of the match object that gets passed in as props.

<route path='/contacts/:name' render={({ match }) => (
    <div>hello, { match.params.name } </div>
)} />

Related Query

More Query from same tag