apollo-mantra
Version:
Tools for integration of apollo with Mantra
21 lines (20 loc) • 567 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var React = require("react");
var defaultComponent = function (props) {
throw new Error('Please initialise default components or specify one');
};
var options = {
loadingComponent: defaultComponent,
authComponent: defaultComponent,
LoggingIn: defaultComponent,
apolloClient: null,
contextTypes: {
state: React.PropTypes.object
},
store: null,
userIdSelector: null,
userRolesSelector: null,
isLoggingIn: null
};
exports.default = options;