All files / src/model teeMoStatusMachine.js

50% Statements 1/2
100% Branches 0/0
50% Functions 1/2
50% Lines 1/2
1 2 3 4 5 6 7        1x    
export default {
    namespace: '@@teeMoStatusMachine',
    reducers: {
        onChangeStatus: (state, action) => ({...state, ...action.payload}),
        clearStatus: () => ({})
    }
}