personProfileInitialState.js 319 Bytes
Newer Older
李彥志's avatar
李彥志 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import { Record } from 'immutable';

const InitialState = Record({
  state: null,
  data: {},
  entryFlag: '',
  avatarSource: {},
  isConnected: false,
  emrRelationships: [],
  isLoading: true,
  personalInfo: null,
  editedData: null,
  photo: null,
  password: null,
  error: null
});

export default InitialState;