import { isTablet, getDeviceType } from 'react-native-device-info'; const isDesktop: boolean = getDeviceType() === 'Desktop'; export const isHandset: boolean = getDeviceType() === 'Handset'; export { isDesktop, isTablet };