Files
talk/client/coral-framework/actions/notification.js
T
2017-04-11 16:14:02 -03:00

10 lines
253 B
JavaScript

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