Files
talk/client/coral-framework/actions/notification.js
T
Belen Curcio 5729b03656 my-comments-ux
2017-03-22 15:35:40 -03:00

10 lines
251 B
JavaScript

import {pym} from '../../coral-framework';
export const addNotification = (notifType, text) => {
pym.sendMessage('coral-alert', `${notifType}|${text}`);
};
export const clearNotification = () => {
pym.sendMessage('coral-clear-notification');
};