12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var initialState = {
|
|
currentUser: {
|
|
isSignedIn: false,
|
|
isLoading: false,
|
|
hasVerificationBeenAttempted: false,
|
|
attributes: {},
|
|
},
|
|
};
|
|
exports.default = initialState;
|
|
//# sourceMappingURL=initial-state.js.map
|