ant-design/components/input/demo/textarea.md
2017-07-14 15:47:07 +08:00

22 lines
255 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);
````