UNPKG

@xapp/chat-widget

Version:
11 lines (10 loc) 352 B
import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import { ChatServerButton, ChatServerCard } from "../../xapp/ChatServerMessage"; import "./ChatCard.scss"; export interface Props { readonly card: ChatServerCard; onButtonClick(button: ChatServerButton): void; } declare const ChatCard: FC<Props>; export default ChatCard;