mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 04:30:06 +08:00
29 lines
379 B
Markdown
29 lines
379 B
Markdown
|
---
|
||
|
order: 5
|
||
|
title:
|
||
|
zh-CN: 404
|
||
|
en-US: 404
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
此页面未找到。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
The page you visited does not exist.
|
||
|
|
||
|
```jsx
|
||
|
import { Result, Button } from 'antd';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<Result
|
||
|
status="404"
|
||
|
title="404"
|
||
|
subTitle="'Sorry, the page you visited does not exist."
|
||
|
extra={<Button type="primary">Back Home</Button>}
|
||
|
/>,
|
||
|
mountNode,
|
||
|
);
|
||
|
```
|