fastExpressInitialState.js
284 Bytes
'use strict';
import {Record, List, Map} from 'immutable';
let InitialState = Record({
isFetching: false,
list: List(),
currentPage: 0,
endReached: false,
similarIndex: -1,
total: 0,
pageSize: 50,
pageCount: 0,
fastExpressList: List(),
});
export default InitialState;