mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-08 21:05:01 +00:00
c16d0fa823
Testé sur les règles du CDD, AGIRC, APEC TODO : - finir AGIRC APEC - !statut cadre - assiette cotisations sociales -> indemnités CDD -> espace CDD -> CDD booléen
16 lines
347 B
JavaScript
16 lines
347 B
JavaScript
import { takeEvery} from 'redux-saga/effects'
|
|
// import { call, put} from 'redux-saga/effects'
|
|
// import Promise from 'core-js/fn/promise'
|
|
|
|
// Nothing happening here !
|
|
|
|
function* handleSubmitStep() {
|
|
}
|
|
|
|
function* watchSteps() {
|
|
yield* takeEvery('SUBMIT_STEP', handleSubmitStep)
|
|
}
|
|
|
|
export default function* rootSaga() {
|
|
yield [ watchSteps() ]
|
|
}
|