homeInitialState.js 408 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,
	brandId: 0,
	overview: new (Record({
		rank: 0,
		rise: true,
		riseCount: 0,
		goodsCount: 0,
		goodsAmount: 0,
	})),
});

export default InitialState;