listInitialState.js
299 Bytes
'use strict';
import Immutable, {Record, List, Map} from 'immutable';
let InitialState = Record({
listId: 0,
isFetching: false,
error: null,
list: List(),
currentPage: 0,
pageCount: 0,
pageSize: 60,
total: 0,
endReached: false,
shouldShowEmpty: false,
});
export default InitialState;