diff --git a/next05/app/[searchTerm]/components/Item.tsx b/next05/app/[searchTerm]/components/Item.tsx index 956ece14..6d38ae9d 100644 --- a/next05/app/[searchTerm]/components/Item.tsx +++ b/next05/app/[searchTerm]/components/Item.tsx @@ -1,4 +1,5 @@ import Link from 'next/link' +import Image from "next/image" type Props = { result: Result @@ -22,7 +23,16 @@ export default function Item({ result }: Props) {
-