lbry-desktop/ui/js/reducers/rewards.js
6ea86b96 6abb7bfe92 Loading show page content fast, resolving cost and file info.
Rewards and uploaded/downloaded files currently broken
2017-05-04 11:59:45 -04:00

12 lines
264 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;
}