You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
383 B
20 lines
383 B
import {
|
|
DISPLAY_ADDCOIN_MODAL
|
|
} from '../actions/storeType';
|
|
|
|
export function AddCoin(state = {
|
|
display: false,
|
|
isLogin: false,
|
|
}, action) {
|
|
switch (action.type) {
|
|
case DISPLAY_ADDCOIN_MODAL:
|
|
return Object.assign({}, state, {
|
|
display: action.display,
|
|
isLogin: action.isLogin
|
|
});
|
|
default:
|
|
return state;
|
|
}
|
|
}
|
|
|
|
export default AddCoin;
|
|
|