homeInitialState.js
409 Bytes
/**
* # guideInitialState.js
*
*
*/
'use strict';
/**
* ## Import immutable record
*/
import {Record} from 'immutable';
/**
* ## InitialState
*
* The fields we're concerned with
*/
let InitialState = Record({
isFetching: false,
error: null,
shopId: 0,
overview: new (Record({
rank: 0,
rise: true,
riseCount: 0,
goodsCount: 0,
goodsAmount: 0,
})),
});
export default InitialState;