"use client" import { cn } from "@/lib/utils/cn" import { CommentInfo } from "@/types/general" import { CommentCard } from "../comment-card" export function CommentList({ comments = [] }: { comments: CommentInfo[] }) { return (
{comments.map(comment => ( ))}
) }