<Link to="/products/order?type=exchange">
교환페이지
</Link>
현재 페이지 : localhost:3000/products/order?type=exchange
import {useLocation} from "react-router-dom"
import queryString from "query-string"
const { search } = useLocation();
const { type } = queryString.parse(search);
console.log(search); //ex) ?type=exchange
console.log(type); //ex)exchange