UNPKG

chat-frontend-library

Version:

``` npm install chat-frontend-library --save ```

16 lines (15 loc) 480 B
import React, { FC } from "react"; import "./ActiveChats.scss"; interface ActiveChatsProps { setCreateConversation: React.Dispatch<React.SetStateAction<boolean>>; cbHandleCloseChatList?: () => void; isOnlyChatList?: boolean; classList?: string; user_locale?: string; cbHandleOpenChat?: (chat_information: { chat_id: string; opponent_id: string; }) => void; } declare const ActiveChats: FC<ActiveChatsProps>; export default ActiveChats;