react-native-scrollable-tab-view
Version:
[](https://badge.fury.io/js/react-native-scrollable-tab-view)
20 lines (14 loc) • 394 B
JavaScript
const React = require('react');
class StaticContainer extends React.Component {
shouldComponentUpdate(nextProps: Object): boolean {
return !!nextProps.shouldUpdate;
}
render(): ?ReactElement {
var child = this.props.children;
if (child === null || child === false) {
return null;
}
return React.Children.only(child);
}
}
module.exports = StaticContainer;