22 lines
587 B
JavaScript
22 lines
587 B
JavaScript
import Image from "next/image"
|
|
|
|
function Comment({ data }) {
|
|
return (
|
|
<li
|
|
className="flex flex-col gap-[8px] w-full"
|
|
>
|
|
<div className="flex items-start justify-between w-full">
|
|
<div className="flex items-center justify-start gap-[16px]">
|
|
<Image
|
|
src={data.profile}
|
|
alt="profile"
|
|
height={87}
|
|
width={87}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
)
|
|
}
|
|
|
|
export default Comment |