UNPKG

custom-chatbot-app

Version:

This is my custom chatbot package for BuyersEdge

9 lines (8 loc) 233 B
import React from 'react'; import { type ChatListT } from '../../types'; interface BotMessageProps { message: ChatListT; classPrefix?: string; } declare const BotMessage: React.FC<BotMessageProps>; export default BotMessage;