UNPKG

@livelike/react-native

Version:

LiveLike React Native package

15 lines 434 B
import { createStore } from './store'; const DEFAULT_POPOVER_DETAIL = { messageId: '', popoverType: undefined }; export const messageItemPopoverStore = createStore(DEFAULT_POPOVER_DETAIL); export const messageItemPopoverStoreActions = { showPopover(args) { messageItemPopoverStore.set(args); }, hidePopover() { messageItemPopoverStore.set(DEFAULT_POPOVER_DETAIL); } }; //# sourceMappingURL=mesageItemPopover.js.map