import Image from 'next/image'; export interface Props { title: string; src: string; width: number; height: number; } export function Images(props: Props) { return (
{props.title}
); } export default Images;