let show = false;
const MessageLogic = {
hide: () => show = false,
show: () => show = true,
isShowing: () => show
};
export default MessageLogic;