ccdp10003-project02/components/headphones.tsx

17 lines
304 B
TypeScript
Raw Normal View History

import React from 'react';
import Image from 'next/image';
export default function Headphones() {
return (
<div>
<Image
src="images/headphones.svg"
alt="Headphones image"
width={100}
height={100}
/>
<p>Headphones recommended</p>
</div>
);
}