mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
1fc1710582
* split demos close #17396 * snapshot updated * split all demo * fix lint error * better code style * change complex to error * sort demos
34 lines
551 B
Markdown
34 lines
551 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: Success
|
|
en-US: Success
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
成功的结果。
|
|
|
|
## en-US
|
|
|
|
Show successful results.
|
|
|
|
```jsx
|
|
import { Result, Button } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Result
|
|
status="success"
|
|
title="Successfully Purchased Cloud Server ECS!"
|
|
subTitle="Order number: 2017182818828182881 Cloud server configuration takes 1-5 minutes, please wait."
|
|
extra={[
|
|
<Button type="primary" key="console">
|
|
Go Console
|
|
</Button>,
|
|
<Button key="buy">Buy Again</Button>,
|
|
]}
|
|
/>,
|
|
mountNode,
|
|
);
|
|
```
|