Class MultiLineInput

The "MultiLineInput" component is a multi-line text area to write your texts.

MultiLineInput usage

 <MultiLineInput
placeholder="Placeholder teste"
value={this.state.inputValue}
onChange={e => this.setState({ inputValue: e })}
onFocus={() => console.log("Focus")}
onBlur={() => console.log("Blur")}
onSubmit={(value)=> console.log(`submit:${value}`)}
autoFocus
disabled={this.state.disabled}
required={this.state.required}
name={this.state.name}
spellcheck={this.state.spellcheck}
minLength={this.state.minLength}
maxLength={this.state.maxLength}
readOnly={this.state.readonly}
borderHidden={this.state.borderHidden}
/>

Param

MultiLineInput Properties

Has No Children

Hierarchy

Methods

  • Returns void

  • Returns string

  • Parameters

    • e: any

    Returns void

  • Returns Element