Ajout page d'authentification
This commit is contained in:
@ -1,7 +1,9 @@
|
||||
import { all, takeLatest } from 'redux-saga/effects';
|
||||
import { LOGIN_REQUEST } from '../actions/auth.actions';
|
||||
import { loginSaga} from './auth.sagas';
|
||||
|
||||
export default function* rootSaga() {
|
||||
yield all([
|
||||
|
||||
takeLatest(LOGIN_REQUEST, loginSaga),
|
||||
]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user