import { CommentList } from "@/src/features/comments/CommentList"; import { type AnnotationQueueObjectType } from "@langfuse/shared"; interface CommentsSectionProps { projectId: string; objectId: string; objectType: AnnotationQueueObjectType; onDraftChange?: (hasDraft: boolean) => void; } export const CommentsSection: React.FC = ({ projectId, objectId, objectType, onDraftChange, }) => { return ( ); };