import React from 'react'; import OptionallyDisplayed from './OptionallyDisplayed.jsx'; export default class TextField extends React.Component { constructor(props) { super(props); this.shouldDisplayError = this.shouldDisplayError.bind(this); } shouldDisplayError() { return this.props.showError && this.props.errorText != ""; } render() { return (