---
order: 5
category: 2
title: 文本域
title_en: TextArea
description: 用于多行输入。
---

````jsx
import { Input } from 'antd';

const { TextArea } = Input;

ReactDOM.render(<TextArea rows={4} />, mountNode);
````
