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