19 lines
299 B
JavaScript
Raw Normal View History

2019-07-08 17:01:12 +02:00
/**
*
* listView reducer
*/
import { fromJS } from 'immutable';
// import { } from './constants';
export const initialState = fromJS({});
function listViewReducer(state = initialState, action) {
switch (action.type) {
default:
return state;
}
}
export default listViewReducer;