mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
212 B
212 B
order | title |
---|---|
5 | 文本域 |
用于多行输入,指定 type
为一个特殊的 textarea
。
import { Input } from 'antd';
ReactDOM.render(<Input type="textarea" rows={4} />, mountNode);