grafana/public/app/features/dashboard/utils/screen.ts

8 lines
144 B
TypeScript
Raw Normal View History

import { useWindowSize } from 'react-use';
export const useIsDesktop = () => {
const { width } = useWindowSize();
return width > 1024;
};