mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
8 lines
144 B
TypeScript
8 lines
144 B
TypeScript
|
import { useWindowSize } from 'react-use';
|
||
|
|
||
|
export const useIsDesktop = () => {
|
||
|
const { width } = useWindowSize();
|
||
|
|
||
|
return width > 1024;
|
||
|
};
|