@nexusui/components
Version:
These are custom components specially-developed for NexusUI applications. They will make your life easier by giving you out-of-the-box implementations for various high-level UI elements that you can drop directly into your application.
7 lines (6 loc) • 489 B
TypeScript
import { ICommentItem } from '../CommentDrawer.container';
import { ICommentDrawerComponent } from '../CommentDrawer.component';
export type ICommentVirtualizedList = Pick<ICommentDrawerComponent, 'comments' | 'selectedCommentId' | 'currentUser' | 'onReplyAdd' | 'searchTerm' | 'mode' | 'richTextConfig'> & {
onSelectComment: (comment?: ICommentItem) => void;
};
export declare const CommentVirtualizedList: (props: ICommentVirtualizedList) => import("react/jsx-runtime").JSX.Element;