You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
386 B
17 lines
386 B
import { Link } from '@umijs/max';
|
|
import { Button, Card, Result } from 'antd';
|
|
|
|
export default () => (
|
|
<Card variant="borderless">
|
|
<Result
|
|
status="403"
|
|
title="403"
|
|
subTitle="Sorry, you are not authorized to access this page."
|
|
extra={
|
|
<Link to="/">
|
|
<Button type="primary">Back to home</Button>
|
|
</Link>
|
|
}
|
|
/>
|
|
</Card>
|
|
);
|
|
|