UNPKG

chat-frontend-library

Version:

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

13 lines (12 loc) 395 B
import { FC } from "react"; import { IChatItem } from "@api/chatApi"; import "moment/locale/ru"; import "./ActiveChatUser.scss"; interface ActiveChatUserProps { activeChat?: boolean; chatInformation: IChatItem; cbHandleActiveChat: (chatInformation: IChatItem) => void; user_locale?: string; } declare const ActiveChatUser: FC<ActiveChatUserProps>; export default ActiveChatUser;