UNPKG

modelosaurus-chatbot

Version:

A customizable plug and play chatbot component for React applications, designed to work seamlessly with the Modelosaurus API.

9 lines (8 loc) 216 B
import React from 'react'; import { ChatbotData } from '../../types'; interface FooterProps { settings: ChatbotData; isExpanded: boolean; } declare const Footer: React.FC<FooterProps>; export default Footer;