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