import React from 'react'; export default class GroupControl extends React.Component { static typeName() { return 'group'; } static children(snapshot) { return snapshot.controls; } render() { // actually it doesn't render anything return null; } } GroupControl.propTypes = { schema: React.PropTypes.object.isRequired };