import { useParams } from 'react-router-dom'

<h1>Sample {params.id}</h1>

//Route
<Route path='/sample/:id/' element={<Post />} />