| Current Path : /home/frekansk/www/wp-content/plugins/learnpress/assets/src/apps/js/frontend/modal/store/ |
| Current File : /home/frekansk/www/wp-content/plugins/learnpress/assets/src/apps/js/frontend/modal/store/actions.js |
export function show( message, cb ) {
return {
type: 'SHOW_MODAL',
message,
cb,
};
}
export function hide() {
return {
type: 'HIDE_MODAL',
};
}
export function confirm( value ) {
return {
type: 'CONFIRM',
value,
};
}