Interactive discussion thread component displaying nested comments, markdown rendering, avatars, and reply composer.
CommentsSectionProps containing the target feature request ID.
import React from 'react';import { CommentsSection } from '@cupthread/react-native';export function FeatureCommentsTab({ id }: { id: string }) { return <CommentsSection featureRequestId={id} />;} Copy
import React from 'react';import { CommentsSection } from '@cupthread/react-native';export function FeatureCommentsTab({ id }: { id: string }) { return <CommentsSection featureRequestId={id} />;}
Interactive discussion thread component displaying nested comments, markdown rendering, avatars, and reply composer.