mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-08 21:05:01 +00:00
L'UI du simulateur de coût d'embauche, conversationnelle, y a été greffée. Le graphe des dépendance des variable est calaculé pour afficher les bonnes questions, et le résultat. Seule une variable est prise en compte, le CIF CDD :-D
16 lines
333 B
JavaScript
16 lines
333 B
JavaScript
import { takeEvery} from 'redux-saga'
|
|
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() ]
|
|
}
|