Background gradients, migrate from CSS to SCSS, remove !important
This commit is contained in:
11
client/src/sagas/core/services/modal.js
Normal file
11
client/src/sagas/core/services/modal.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import { put } from 'redux-saga/effects';
|
||||
|
||||
import { closeModal, openModal } from '../../../actions';
|
||||
|
||||
export function* openModalService(type) {
|
||||
yield put(openModal(type));
|
||||
}
|
||||
|
||||
export function* closeModalService() {
|
||||
yield put(closeModal());
|
||||
}
|
||||
Reference in New Issue
Block a user