import { Link, useParams } from "react-router"; export function PersonPage() { const { id } = useParams(); return (

Person Page: {id}

(Retrieved from the URL params)

Go to Home
); }