UNPKG

aspirechat

Version:

A highly customizable React chatbot component with extensive configuration options

9 lines (8 loc) 282 B
import React from "react"; import { ChatButtonOption } from "../hooks/useChat"; interface ChatButtonsProps { options: ChatButtonOption[]; onButtonClick: (option: ChatButtonOption) => void; } declare const ChatButtons: React.FC<ChatButtonsProps>; export default ChatButtons;