userThatNotMeInitialState.js
600 Bytes
'use strict'
import {Record, List} from 'immutable'
let InitialState = Record({
profile: new (Record({
isFetching: false,
error: null,
uid: 0,
avatar: '',
backgroundImage: '',
nickName: '',
realName: '',
gender: '',
sign: '',
age: 0,
birthday: '',
height: 0,
weight: 0,
msgCount: '0',
})),
posts: new (Record({
isFetching: false,
error: null,
lastedTime: 0,
list: List(),
endReached: false,
})),
});
export default InitialState;