mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 17:33:55 +00:00
9 lines
219 B
TypeScript
9 lines
219 B
TypeScript
import { useMemo } from 'react';
|
|
import { useViewportSize } from '@mantine/hooks';
|
|
|
|
export function useIsSmallScreen(): boolean {
|
|
const { width } = useViewportSize();
|
|
|
|
return useMemo(() => width < 1300, [width]);
|
|
}
|