mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 18:09:22 +08:00
38b4a03c56
* fix: textarea maxlength * refactor: delete some useless code * refactor: fix ci * refactor and fix test case fall * update snapshot * add testcase * refactor type defined
361 B
361 B
order | title | ||||
---|---|---|---|---|---|
5 |
|
zh-CN
用于多行输入。
en-US
For multi-line input.
import { Input } from 'antd';
const { TextArea } = Input;
ReactDOM.render(
<>
<TextArea rows={4} />
<br />
<br />
<TextArea rows={4} placeholder="maxLength is 6" maxLength={6} />
</>,
mountNode,
);