mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
|
import React from 'react';
|
||
|
import { Button, Result } from 'antd';
|
||
|
|
||
|
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;
|