UNPKG

rn-custom-style-sheet

Version:

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

8 lines (5 loc) 224 B
import { useContext } from 'react'; import { type ThemeContextType, ThemeContext } from '../../Context'; export default function useThemeContext(): ThemeContextType { return useContext<ThemeContextType>(ThemeContext); }