UNPKG

react-native-scrollable-tab-view

Version:

[![npm version](https://badge.fury.io/js/react-native-scrollable-tab-view.svg)](https://badge.fury.io/js/react-native-scrollable-tab-view)

20 lines (14 loc) 394 B
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;