* initial code 2 fix the issue #2025 * Mark class prototype as read-only * Update fixtures * Fix failure * Update Babel 8 fixtures * Disable in loose mode * Update fixtures Co-authored-by: Nicolò Ribaudo <nicolo.ribaudo@gmail.com>
25 lines
621 B
JavaScript
25 lines
621 B
JavaScript
function withContext(ComposedComponent) {
|
|
var _class, _temp;
|
|
|
|
return _temp = _class = /*#__PURE__*/function (_Component) {
|
|
"use strict";
|
|
|
|
babelHelpers.inherits(WithContext, _Component);
|
|
|
|
var _super = babelHelpers.createSuper(WithContext);
|
|
|
|
function WithContext() {
|
|
babelHelpers.classCallCheck(this, WithContext);
|
|
return _super.apply(this, arguments);
|
|
}
|
|
|
|
return babelHelpers.createClass(WithContext);
|
|
}(Component), _class.propTypes = {
|
|
context: PropTypes.shape({
|
|
addCss: PropTypes.func,
|
|
setTitle: PropTypes.func,
|
|
setMeta: PropTypes.func
|
|
})
|
|
}, _temp;
|
|
}
|