mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-23 15:04:54 +00:00
12 lines
351 B
TypeScript
12 lines
351 B
TypeScript
![]() |
import { Result } from 'antd';
|
||
|
import React from 'react';
|
||
|
import { SearchablePage } from '../search/SearchablePage';
|
||
|
|
||
|
export const UnauthorizedPage = () => {
|
||
|
return (
|
||
|
<SearchablePage>
|
||
|
<Result status="403" title="Unauthorized" subTitle="Sorry, you are not authorized to access this page." />
|
||
|
</SearchablePage>
|
||
|
);
|
||
|
};
|