Files
talk/client/coral-framework/actions/notification.js
T

10 lines
245 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');
};