stockStatsInitialState.js 220 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 'use strict'; import {List, Record} from 'immutable'; let InitialState = Record({ error: null, isFetching: false, pageCount: 0, sum: '0', totalAmount: '0', jsonData: List([]), }); export default InitialState;