ccdp10003-project02/components/headphones.tsx

16 lines
310 B
TypeScript

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