summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/viewer.reducer.js
blob: 039d16f62d409318fbc1d7626c849247cce9d045 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import * as types from 'app/types'

const initialState = {
  options: {
  }
}

export default function viewerReducer(state = initialState, action) {
  // console.log(action.type, action)
  switch (action.type) {
    default:
      return state
  }
}