react route params code example
Example 1: react router url params
import { Route, useParams } from "react-router-dom";
<Route path="/:id" children={<Child />} />
let { id } = useParams();
Example 2: react js router parameters
<Route path="/thanks/:status" component={ThanksPage} />
import { useParams } from "react-router-dom";
const { status } = useParams();
Example 3: react get route params
const Child = ({ match }) => (
<div>
<h3>ID: {match.params.id}</h3>
</div>
)
Example 4: react router link with params
<Link to={{
pathname: '/tylermcginnis',
state: {
fromNotifications: true
}
}}>Tyler McGinnis</Link>