15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
import { ReloadOutlined } from '@ant-design/icons';
|
|
import { Result } from 'antd';
|
|
import BackIcon from 'components/Icons/BackIcon';
|
|
|
|
export const Error503Page = () => {
|
|
return (
|
|
<Result
|
|
status="500"
|
|
title="500"
|
|
subTitle="Sorry, something went wrong."
|
|
extra={[<BackIcon />, <ReloadOutlined />]}
|
|
/>
|
|
);
|
|
};
|