import React from 'react'; import { Image as AntdImage, ImageProps as AntdImageProps } from 'antd'; export const Image: React.FC = React.memo((props) => { return ( ); }); Image.displayName = 'Image';