import { Check, RotateCcw } from "lucide-react"; import { Button } from "@/components/ui/button"; import type { ReviewComment } from "./types"; interface CommentThreadProps { comments: ReviewComment[]; onResolve: (commentId: string) => void; onUnresolve: (commentId: string) => void; } export function CommentThread({ comments, onResolve, onUnresolve }: CommentThreadProps) { return (
{comment.body}