(props, context)
| 22565 | * @param context - The context for the component. |
| 22566 | */ // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 22567 | function BaseComponent1(props, context) { |
| 22568 | var _this = _super.call(this, props, context) || this; |
| 22569 | // eslint-disable-next-line deprecation/deprecation |
| 22570 | _makeAllSafe(_this, BaseComponent1.prototype, [ |
| 22571 | "componentDidMount", |
| 22572 | "shouldComponentUpdate", |
| 22573 | "getSnapshotBeforeUpdate", |
| 22574 | "render", |
| 22575 | "componentDidUpdate", |
| 22576 | "componentWillUnmount", |
| 22577 | ]); |
| 22578 | return _this; |
| 22579 | } |
| 22580 | /** |
| 22581 | * When the component receives props, make sure the componentRef is updated. |
| 22582 | */ BaseComponent1.prototype.componentDidUpdate = function(prevProps, prevState) { |
nothing calls this directly
no test coverage detected