get param is react code example
Example 1: react get route params
const Child = ({ match }) => (
<div>
<h3>ID: {match.params.id}</h3>
</div>
)
Example 2: get param is react
const pathArray = window.location.pathname.split('/');
const id = pathArray[2];