useParams Nedir?


⚡ Temel Kullanım

import { useParams } from "react-router-dom";

function UserProfile() {
  const { userId } = useParams(); // /users/:userId

  return (
    <div>
      <h1>Kullanıcı Profili: {userId}</h1>
    </div>
  );
}


⚡ Notlar

const id = parseInt(userId, 10);