import React, { Component } from "react" import PropTypes from "prop-types" class FormInput extends Component { constructor(props) { super(props) this.isNotRequiredAndEmpty = this.isNotRequiredAndEmpty.bind(this) } isNotRequiredAndEmpty = () => !this.props.inputValue && !this.props.isRequired render() { return (
{this.props.bigTextBox ?