import { Popover } from 'antd';
import classNames from 'classnames';
import styles from './index.less';
interface IImage {
id: string;
className: string;
}
const ChunkImage = ({ id, className, ...props }: IImage) => {
const imgSrc = id;
return (
);
};
export default ChunkImage;
export const ImageWithPopover = ({ id }: { id: string }) => {
return (
}
>
);
};