UNPKG

@nodeject/ui-components

Version:

UI library for non-trivial components

14 lines (13 loc) 409 B
import * as React from 'react'; import { Comment as IComment } from '../dtos'; export interface FooterProps { conversationId: string; getTributeComponent: any; goToComment?: (id: string) => void; user: { id: string; }; addComment: (comment: IComment, callback?: () => void) => void; tributes?: Array<any>; } export declare const Footer: React.FC<FooterProps>;