Files
KnowStreaming/km-console/packages/layout-clusters-fe/src/pages/ErrorPages/Page403.tsx
2022-10-29 13:55:36 +08:00

15 lines
360 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
import page403 from '@src/assets/page403.png';
export default () => {
return (
<div className="error-page">
<img width={230} height={150} src={page403} />
<div className="title">访</div>
<a className="link" href="/">
</a>
</div>
);
};