import { put } from 'redux-saga/effects';
import * as actions from 'lib/redux/actions/global-helpers-actions';

export function* showGlobalLogin(): Generator {
	yield put(actions.showedGlobalLogin());
}

export function* hideGlobalLogin(): Generator {
	yield put(actions.hidGlobalLogin());
}


