import React from 'react'; export default class SubtitleControl extends React.Component { static typeName() { return 'subtitle'; } render() { const className = this.props.schema.level ? 'subtitle' + this.props.schema.level : 'subtitle'; return React.createElement( 'div', { className: className }, this.props.schema.label ); } } SubtitleControl.propTypes = { schema: React.PropTypes.object.isRequired };