UNPKG

rn-custom-style-sheet

Version:

React Native component to select a specific value from a range of values.

10 lines (8 loc) 299 B
import type { ThemeContextType } from '../../Context'; import { useThemeContext } from '../UseThemeContext'; export default function useCurrentBreakpointIndex(): number { const { state: { currentBreakpointIndex }, }: ThemeContextType = useThemeContext(); return currentBreakpointIndex; }