type tImage = { src: string, title?: string } function Image({ src, title }: tImage) { return (
) } export default Image;