Initial commit
This commit is contained in:
14
src/pages/errors/Error503.tsx
Normal file
14
src/pages/errors/Error503.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
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 />]}
|
||||
/>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user