| 12345678 |
- import { handleActions } from 'redux-actions'
- import { TOGGLE_SHOW_PASSWORD } from '../Actions'
-
- const login = handleActions({
- [TOGGLE_SHOW_PASSWORD]: (state, action) => ({ showPassword: !state.showPassword }),
- }, { showPassword: false });
-
- export default login
|