7 lines
174 B
TypeScript
7 lines
174 B
TypeScript
|
import React from 'react';
|
||
|
|
||
|
export const ErrorTip: React.FC = React.memo(() => {
|
||
|
return <div>An unexpected error has occurred</div>;
|
||
|
});
|
||
|
ErrorTip.displayName = 'ErrorTip';
|