add param to url react router 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: append a query string to the url react
history.push({
pathname: '/dresses',
search: '?color=blue'
})
Example 3: adding parameters to url react router
history.push(
`/product?make=${car_make_id}&model=${car_model_id}&year=${car_generation_id}&series=${car_serie_id}&engine=${car_trim_id}&variant=${car_equipment_id}`
);
Example 4: history push search params
this.props.history.push({
pathname: '/client',
search: "?" + new URLSearchParams({clientId: clientId}).toString()
})