8 lines
212 B
TypeScript
8 lines
212 B
TypeScript
|
import { Alert } from 'antd';
|
||
|
import React from 'react';
|
||
|
|
||
|
export const NotFoundTip: React.FC = React.memo(() => {
|
||
|
return <Alert message="Not found" type="error" />;
|
||
|
});
|
||
|
NotFoundTip.displayName = 'NotFoundTip';
|