blob: d1e88890759a73d7b965d0c7ed1c8d79435be9c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import * as types from '../../types'
import { session, getDefault, getDefaultInt } from '../../session'
import { crudState, crudReducer } from '../../api/crud.reducer'
const initialState = {
options: {
}
}
export default function alignReducer(state = initialState, action) {
// console.log(action.type, action)
switch (action.type) {
default:
return state
}
}
|