Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <Route path="/products/:id" component={ProductDetails} />
  2.  
  3. render() {
  4. return (
  5. <div>
  6. <h1>Product Details -{this.props.match.params.id} </h1>
  7. </div>
  8. );
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement