UNPKG

react-native-gifted-chat

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