UNPKG

@kirz/react-native-toolkit

Version:

Toolkit to speed up React Native development

11 lines (7 loc) 255 B
import { useContext } from 'react'; import { ThemeContext, UseTheme } from '../contexts/ThemeContext'; import type { Theme } from '../index'; export function useTheme(): UseTheme<Theme> { const { theme } = useContext(ThemeContext); return theme; }