saleStatisticsInitialState.js
500 Bytes
/**
* # guideInitialState.js
*
*
*/
'use strict';
/**
* ## Import immutable record
*/
import {List, Record} from 'immutable';
/**
* ## InitialState
*
* The fields we're concerned with
*/
let InitialState = Record({
isFetching: false,
error: null,
type: 0,
day: '',
startDay: '',
endDay: '',
month: '',
goodsAmount: 0,
amountRise: true,
amountRisePercent: '',
goodsCount: 0,
countRise: true,
countRisePercent: '',
trendInSevenDays: List(),
});
export default InitialState;