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

const initialState = {
}

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