<Link to="/onboarding/profile" state={{ from: "occupation" }}>
Next Step
</Link>
<code lang="javascript">
import { useLocation } from 'react-router-dom'
function Profile () {
const location = useLocation()
const { from } = location.state
return (
...
)
}
</code>