UNPKG

custom-chatbot-app

Version:

This is my custom chatbot package for BuyersEdge

8 lines (7 loc) 203 B
import React from 'react'; import { type ChatListT } from '../'; interface UserMessageProps { message: ChatListT; } declare const UserMessage: React.FC<UserMessageProps>; export default UserMessage;