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