21 lines
400 B
Markdown
21 lines
400 B
Markdown
# @fluentui/react-textarea
|
|
|
|
**React Textarea components for [Fluent UI React](https://react.fluentui.dev)**
|
|
|
|
The Textarea component is a multiline text input that allows the user to enter
|
|
|
|
## Usage
|
|
|
|
To import Textarea:
|
|
|
|
```js
|
|
import { Textarea } from '@fluentui/react-textarea';
|
|
```
|
|
|
|
### Examples
|
|
|
|
```js
|
|
<Textarea placeholder="Enter text here..." />
|
|
<Textarea defaultValue="Lorem ipsum dolor" />
|
|
```
|