ant-design/components/input/demo/basic.md

21 lines
234 B
Markdown
Raw Normal View History

2016-05-25 18:21:27 +08:00
---
order: 0
title:
2019-05-07 14:57:32 +08:00
zh-CN: 基本使用
en-US: Basic usage
2016-05-25 18:21:27 +08:00
---
## zh-CN
2016-05-25 18:21:27 +08:00
基本使用。
## en-US
2017-02-21 23:26:10 +08:00
Basic usage example.
2019-05-07 14:57:32 +08:00
```jsx
2016-05-25 18:21:27 +08:00
import { Input } from 'antd';
ReactDOM.render(<Input placeholder="Basic usage" />, mountNode);
2019-05-07 14:57:32 +08:00
```