browseInitialState.js
320 Bytes
'use strict';
import {Record, List, Map} from 'immutable';
let InitialState = Record({
isFetching: false,
error: null,
categoryList: List(),
productList: List(),
currentPage: 0,
page_total:0,
selectedCategoryIndex: 0,
curCategoryID: 0,
isDeleting: false,
showEmpty: false,
});
export default InitialState;