lbry-desktop/ui/js/reducers/rewards.js
2017-06-05 21:21:55 -07:00

10 lines
263 B
JavaScript

import * as types from 'constants/action_types';
const reducers = {};
const defaultState = {};
export default function reducer(state = defaultState, action) {
const handler = reducers[action.type];
if (handler) return handler(state, action);
return state;
}