@brightlayer-ui/react-native-auth-workflow
Version:
Re-usable workflow components for Authentication and Registration within Eaton applications.
13 lines (12 loc) • 312 B
TypeScript
type ScreenDimensionsProps = {
width: number;
height: number;
isTablet: boolean;
};
/**
* Hook used to identify whether an app is run on a tablet and to get the app window's width and height.
*
* @category Hook
*/
export declare const useScreenDimensions: () => ScreenDimensionsProps;
export {};