While coding up an <Input />
Component in React-Toolbox, when defining the error Prop, it show by default on the page. How do I either dynamically render the error, or configure it. Code below ... So you always see the error message "Invalid email address" below the input field.
<Input
type='email'
label='Email address'
icon='email'
value={this.state.email}
onChange={this.handleChange.bind(this, 'email')}
hint='email@domain.com'
error="Invalid Email Address"
/>