UNPKG

react-native-gifted-chat

Version:
10 lines 361 B
import { createContext, useContext } from 'react'; export const GiftedChatContext = createContext({ getLocale: () => 'en', actionSheet: () => ({ showActionSheetWithOptions: () => { }, }), getColorScheme: () => undefined, }); export const useChatContext = () => useContext(GiftedChatContext); //# sourceMappingURL=GiftedChatContext.js.map