aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/reducers.js
blob: 1afcec52cec50737ae6d917b1d6e1c3cd9006054 (plain)
1
2
3
4
5
6
7
8
const reducer = (state = [], action) => {
  switch (action.type) {
    default:
      return state;
  }
};

export default reducer;