import { useLocation } from "react-router-dom"; function Locaions() { let location = useLocation(); return ( <> {location.pathname === "/Home" ? "Hi i am at the homepage" : "d-none" } </> ); }