import React from 'react'; export default class extends React.Component { getHelpText() { if (this.props.helpText) { /* jshint ignore:start */ return
{this.props.helpText}
; /* jshint ignore:end */ } else { return null; } } render() { /* jshint ignore:start */ return{this.props.message}
{this.getHelpText()}