import React from 'react'; export default class Dropdown extends React.PureComponent { getLabel() { return this.props.label ? {this.props.label} : null; } render() { return ( {this.getLabel()} {this.props.children} ); } }