4 lines
122 B
TypeScript
4 lines
122 B
TypeScript
import { useLocation } from 'react-router-dom';
|
|
|
|
export const useIsTasksPage = () => useLocation().pathname === '/tasks';
|