messageInitialState.js
332 Bytes
/**
* # guideInitialState.js
*
*
*/
'use strict';
/**
* ## Import immutable record
*/
import {Record} from 'immutable';
/**
* ## InitialState
*
* The fields we're concerned with
*/
let InitialState = Record({
messageDetail: new (Record({
title: '',
content: '',
time: '',
})),
});
export default InitialState;