UNPKG

@sendbird/uikit-react-native-foundation

Version:

A foundational UI kit for building chat-enabled React Native apps.

9 lines 326 B
import { useContext } from 'react'; import UIKitThemeContext from './UIKitThemeContext'; const useUIKitTheme = () => { const context = useContext(UIKitThemeContext); if (!context) throw Error('UIKitThemeContext is not provided'); return context; }; export default useUIKitTheme; //# sourceMappingURL=useUIKitTheme.js.map