Components
A comment thread card anchored to a quoted text selection, with threaded replies, a reply composer, and resolve/reopen actions.
Loading preview...
import CommentThread1 from "@/components/ui/comment-thread-1";
export default function Default() {
return (
<div className="bg-background flex min-h-svh w-full items-center justify-center p-6">
<div className="w-full max-w-md">
<CommentThread1 />
</div>
</div>
);
}