UNPKG

@nodeject/ui-components

Version:

UI library for non-trivial components

12 lines (11 loc) 342 B
import * as React from 'react'; import { Conversation } from '../dtos'; export interface HeaderProps { bookmarkConversation: (conversationId: string) => void; conversation: Conversation; onGoToConversationsClick?: () => void; user: { id: string; }; } export declare const Header: React.FC<HeaderProps>;