react-native-scrollable-tab-view-forked
Version:
forked react-native-scrollable-tab-view ,you can set line width
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;