ccdp10003-project02/components/headphones.tsx

17 lines
310 B
TypeScript
Raw Permalink Normal View History

import React from 'react';
import Image from 'next/image';
export default function Headphones() {
return (
<div>
<Image
2023-05-13 14:49:49 +10:00
src='images/white/headphones.svg'
alt='Headphones image'
width={100}
height={100}
/>
<p>Headphones recommended</p>
</div>
);
}