equal
deleted
inserted
replaced
|
1 import * as types from '../constants/actionTypes'; |
|
2 |
|
3 export const autoSubmit = (state = false, action) => { |
|
4 switch (action.type) { |
|
5 case types.USER_TOGGLE_AUTO_SUBMIT: |
|
6 return action.value; |
|
7 default: |
|
8 return state; |
|
9 } |
|
10 } |
|
11 |
|
12 |