UNPKG

custom-chatbot-app

Version:

This is my custom chatbot package for BuyersEdge

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