Given a simple component that renders its children:
class ContainerComponent extends Component { static propTypes = { children: PropTypes.object.isRequ
If you want to include render prop components:
children: PropTypes.oneOfType([ PropTypes.arrayOf(PropTypes.node), PropTypes.node, PropTypes.func ])