const UIAnnotatedSection = ({ title, description, children }) => { return (

{title}

{typeof description == 'string' ?

{description}

: description}
{children}
); }; UIAnnotatedSection.propTypes = { title: React.PropTypes.string.isRequired, description: React.PropTypes.node, children: React.PropTypes.node };