jsketcher/modules/ui/components/NeverUpdate.jsx
2018-01-19 19:16:24 -08:00

13 lines
No EOL
228 B
JavaScript

import React, {Fragment} from 'react';
export default class NeverUpdate extends React.Component {
shouldComponentUpdate() {
return false;
}
render() {
return <Fragment>{this.props.children}</Fragment>;
}
}