UNPKG

277 BMarkdownView Raw
1# Textarea
2
3Generic textarea which represents an HTML textarea element directly.
4
5## Usage
6
7```jsx
8import React from 'react';
9import Textarea from 'terra-form/lib/Textarea';
10
11<Textarea
12 name="description"
13 value="I'm a software engineer working at Cerner"
14 required
15 />
16```