⚡ useNavigate Nedir?


⚡ Temel Kullanım

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

function Home() {
  const navigate = useNavigate();

  const goToProfile = () => {
    navigate("/profile"); // Programatik yönlendirme
  };

  return (
    <div>
      <h1>Home Page</h1>
      <button onClick={goToProfile}>Profile Sayfasına Git</button>
    </div>
  );
}


⚡ Notlar

navigate("/login", { replace: true });