mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
1fc1710582
* split demos close #17396 * snapshot updated * split all demo * fix lint error * better code style * change complex to error * sort demos
31 lines
364 B
Markdown
31 lines
364 B
Markdown
---
|
|
order: 1
|
|
title:
|
|
zh-CN: Info
|
|
en-US: Info
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
展示处理结果。
|
|
|
|
## en-US
|
|
|
|
Show processing results.
|
|
|
|
```jsx
|
|
import { Result, Button } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Result
|
|
title="Your operation has been executed"
|
|
extra={
|
|
<Button type="primary" key="console">
|
|
Go Console
|
|
</Button>
|
|
}
|
|
/>,
|
|
mountNode,
|
|
);
|
|
```
|