admin-on-rest-fr05t1k
Version:
A frontend Framework for building admin applications on top of REST services, using ES6, React and Material UI
13 lines (9 loc) • 307 B
JavaScript
export const SHOW_NOTIFICATION = 'SHOW_NOTIFICATION';
export const showNotification = (text, type = 'info') => ({
type: SHOW_NOTIFICATION,
payload: { text, type },
});
export const HIDE_NOTIFICATION = 'HIDE_NOTIFICATION';
export const hideNotification = () => ({
type: HIDE_NOTIFICATION,
});