react-native-gifted-chat
Version:
The most complete chat UI for React Native
9 lines • 324 B
JavaScript
import { createContext, useContext } from 'react';
export const GiftedChatContext = createContext({
getLocale: () => 'en',
actionSheet: () => ({
showActionSheetWithOptions: () => { },
}),
});
export const useChatContext = () => useContext(GiftedChatContext);
//# sourceMappingURL=GiftedChatContext.js.map