mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
425 B
425 B
order | title | ||||
---|---|---|---|---|---|
5 |
|
zh-CN
此页面未找到。
en-US
The page you visited does not exist.
import { Button, Result } from 'antd';
import React from 'react';
const App: React.FC = () => (
<Result
status="404"
title="404"
subTitle="Sorry, the page you visited does not exist."
extra={<Button type="primary">Back Home</Button>}
/>
);
export default App;