mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
14 lines
289 B
TypeScript
14 lines
289 B
TypeScript
|
import React from 'react';
|
||
|
import { Button, Result } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<Result
|
||
|
status="403"
|
||
|
title="403"
|
||
|
subTitle="Sorry, you are not authorized to access this page."
|
||
|
extra={<Button type="primary">Back Home</Button>}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default App;
|