messageInitialState.js
366 Bytes
/**
* # guideInitialState.js
*
*
*/
'use strict';
/**
* ## Import immutable record
*/
import Immutable, {Record, List, Map} from 'immutable';
/**
* ## InitialState
*
* The fields we're concerned with
*/
let InitialState = Record({
isFetching: false,
error: null,
messageDetail: 0,
messageList: List(),
unreadNum: 0,
});
export default InitialState;