5 lines
146 B
TypeScript
5 lines
146 B
TypeScript
import { useLocation } from 'react-router-dom';
|
|
|
|
export const useIsSettingsPage = () =>
|
|
useLocation().pathname.match(/\/settings\//g) !== null;
|