birthInitialState.js 255 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 'use strict'; import {Record, List, Map} from 'immutable'; let InitialState = Record({ isFetching: false, list: List(), currentPage: 0, endReached: false, similarIndex: -1, total: 0, pageSize: 50, pageCount: 0, }); export default InitialState;