mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-21 22:15:34 +00:00
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
import { Result } from 'antd';
|
|
import React from 'react';
|
|
|
|
export const UnauthorizedPage = () => {
|
|
return (
|
|
<>
|
|
<Result status="403" title="Unauthorized" subTitle="Sorry, you are not authorized to access this page." />
|
|
</>
|
|
);
|
|
};
|