Files
hoanghapc_nextJs/src/components/shared/ImageItem.tsx

18 lines
430 B
TypeScript
Raw Normal View History

2026-01-14 17:31:59 +07:00
'use client';
import Image from 'next/image';
import Link from 'next/link';
export default function ImageComponent({item}:any){
return(
<Link href={item.desUrl}>
<Image
src={item.fileUrl}
alt={item.name}
width={100}
height={100}
className="block w-full"
unoptimized
/>
</Link>
)
}