UNPKG

@kirz/react-native-toolkit

Version:

Toolkit to speed up React Native development

9 lines 228 B
import { useContext } from 'react'; import { ThemeContext } from '../contexts/ThemeContext'; export function useTheme() { const { theme } = useContext(ThemeContext); return theme; } //# sourceMappingURL=useTheme.js.map