code-share/hooks/usePortrait.ts

9 lines
185 B
TypeScript

import { useScreen } from "usehooks-ts";
export const usePortrait = () => {
const screen = useScreen();
const isPortrait = screen?.width < screen?.height;
return isPortrait;
};