import React from 'react'; import { Image, ImageProps } from '@chakra-ui/react'; import { getWebReqUrl } from '../../../common/system/utils'; const MyImage = (props: ImageProps) => { return {props.alt; }; export default React.memo(MyImage);