- Linting... Prettier...

This commit is contained in:
2019-08-07 01:59:10 -04:00
parent 3dc8589fb4
commit 847c9b192a
102 changed files with 2161 additions and 2109 deletions

View File

@@ -2,10 +2,10 @@ import { SET_AUCTION_VIEW_MODE } from '../constants/actionTypes.js';
import { AUCTION_VIEW_MODES } from '../constants/constants.js';
export const auctionView = (state = AUCTION_VIEW_MODES.ALL, action) => {
switch (action.type) {
case SET_AUCTION_VIEW_MODE:
return action.payload;
default:
return state;
}
switch (action.type) {
case SET_AUCTION_VIEW_MODE:
return action.payload;
default:
return state;
}
};