UNPKG

supporttor

Version:

A generic React chat widget component that supports any app with a knowledge base

11 lines (10 loc) 269 B
import React from 'react'; import './MessageInput.css'; interface MessageInputProps { value: string; onChange: (value: string) => void; onSend: () => void; isLoading: boolean; } export declare const MessageInput: React.FC<MessageInputProps>; export {};