refoundStatisticsInitialState.js
365 Bytes
'use strict';
import {List, Record} from 'immutable';
let InitialState = Record({
isFetching: false,
error: null,
month:'',
refoundSum:0,
sumRatio:0,
sumRise:true,
refoundCount:0,
countRatio:0,
countRise:true,
refoundPercent:0,
percentRatio:0,
percentRise:false,
sixMonths: List(),
trendInSixMonth: List(),
});
export default InitialState;