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