You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
427 B
23 lines
427 B
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _react = require("react");
|
|
class Stop extends _react.Component {
|
|
static displayName = 'Stop';
|
|
setNativeProps = () => {
|
|
const {
|
|
parent
|
|
} = this.props;
|
|
if (parent) {
|
|
parent.forceUpdate();
|
|
}
|
|
};
|
|
render() {
|
|
return null;
|
|
}
|
|
}
|
|
exports.default = Stop;
|
|
//# sourceMappingURL=Stop.js.map
|