19 lines
266 B
JavaScript
Raw Normal View History

2018-02-26 12:16:15 +01:00
/**
*
* ConfigPage reducer
*
*/
import { fromJS } from 'immutable';
const initialState = fromJS({});
function configPageReducer(state = initialState, action) {
switch (action.type) {
default:
return state;
}
}
export default configPageReducer;