import axios from 'axios'

export const Types = {}

export const Actions = {}

const INITIAL_STATE = {}

export default function {{pascalCase name }}(state = INITIAL_STATE, action) {
  switch (action.type) {
    default:
      return state
      break
  }
}