userInitialState.js 481 Bytes
/**
 * # guideInitialState.js
 * 
 *
 */
'use strict';
/**
 * ## Import immutable record
 */
import {List, Record} from 'immutable';

/**
 * ## InitialState
 *
 *	shops: List of
 *	new (Record({
 *			id: '',
 *			name: '',
 *		}))
 * 
 * The fields we're concerned with
 */
let InitialState = Record({
	error: null,
  	isValid: false,
  	isFetching: false,
	profile: new (Record({
		account: '',
		pid: '',
		sessionKey: '',
	})),
	shops: List(),
});

export default InitialState;