ant-design/components/input/demo/textarea.md
2019-05-07 14:57:32 +08:00

23 lines
250 B
Markdown

---
order: 5
title:
zh-CN: 文本域
en-US: TextArea
---
## zh-CN
用于多行输入。
## en-US
For multi-line input.
```jsx
import { Input } from 'antd';
const { TextArea } = Input;
ReactDOM.render(<TextArea rows={4} />, mountNode);
```