rn-custom-style-sheet
Version:
React Native component to select a specific value from a range of values.
12 lines (10 loc) • 360 B
text/typescript
import { type ThemeContextType, useThemeContext } from '../../../Core';
import type { MediaQueryAllQueryable } from '../../Components';
export default function useDeviceForMediaQuery():
| Partial<MediaQueryAllQueryable>
| undefined {
const {
state: { deviceForMediaQuery },
}: ThemeContextType = useThemeContext();
return deviceForMediaQuery;
}