mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 18:09:22 +08:00
24 lines
282 B
Markdown
24 lines
282 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本使用
|
|
en-US: Basic usage
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
基本使用。
|
|
|
|
## en-US
|
|
|
|
Basic usage example.
|
|
|
|
```tsx
|
|
import { Input } from 'antd';
|
|
import React from 'react';
|
|
|
|
const App: React.FC = () => <Input placeholder="Basic usage" />;
|
|
|
|
export default App;
|
|
```
|