Answers for "uselocation react router 5"

1

useLocation react

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

function Locaions() {

  let location = useLocation();

  return (
    <>
    {location.pathname === "/Home" ?
    "Hi i am at the homepage"
    :
    "d-none"
    }
    </>
  );
}
Posted by: Guest on May-17-2022

Code answers related to "uselocation react router 5"

Code answers related to "Javascript"

Browse Popular Code Answers by Language