aboutsummaryrefslogtreecommitdiff
path: root/src/reducers/index.js
blob: d49af7db861acbc3802fe2090def39311f18f514 (plain) (blame)
1
2
3
4
5
6
7
const defaultState = {
};

export default function reducer(state = defaultState/*, action = {}*/) {
  return Object.assign({}, state, {
  });
}