'use strict'; import {Record, List, Map} from 'immutable'; let InitialState = Record({ userFavArticleList: new (Record({ isFetching: false, favArticleList: List(), curPage: 0, totalPage: 0, })), }); export default InitialState;