Files
open-saas/template/app/src/client/hooks/useIsLandingPage.ts

11 lines
241 B
TypeScript

import { useMemo } from "react";
import { useLocation } from "react-router-dom";
export const useIsLandingPage = () => {
const location = useLocation();
return useMemo(() => {
return location.pathname === "/";
}, [location]);
};