import React, { ReactElement } from 'react' import styles from './Info.module.css' export default function ImageInfo({ image, tag, handleClose }: { image: string tag: string handleClose(): void }): ReactElement { return (

{`${image}:${tag}`}

) }