get url props react code example
Example 1: get url react
window.location.href
Example 2: react get route params
const Child = ({ match }) => (
<div>
<h3>ID: {match.params.id}</h3>
</div>
)
window.location.href
const Child = ({ match }) => (
<div>
<h3>ID: {match.params.id}</h3>
</div>
)