import type { ReactNode } from 'react'; type CommentCardProps = { children: ReactNode; isCommentOwner?: boolean; }; export default function CommentCard({ isCommentOwner, children, }: CommentCardProps) { // Used two different
to allow customisation of owner comments return isCommentOwner ? (
{children}
) : (
{children}
); }