summaryrefslogtreecommitdiff
path: root/animism-align/frontend/views/site/site.reducer.js
blob: e9e5ebc45afd291cfc28c9ad553c15d57fcc3688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import * as types from '../../types'
// import { session, getDefault, getDefaultInt } from '../../session'

const initialState = {
}

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