Files
twenty/packages/twenty-front/src/modules/ui/layout/hooks/useIsMenuNavbarDisplayed.ts
2023-12-10 18:10:54 +01:00

7 lines
207 B
TypeScript

import { useLocation } from 'react-router-dom';
export const useIsMenuNavbarDisplayed = () => {
const currentPath = useLocation().pathname;
return currentPath.match(/^\/companies(\/.*)?$/) !== null;
};