UNPKG

@ingridsandev/chatbot-widget

Version:

A framework-agnostic chatbot widget using Web Components

12 lines (9 loc) 384 B
// Main entry point for the chatbot widget package import ChatbotWidget from './src/components/chatbot-widget.js'; // Export for ES modules export default ChatbotWidget; export { ChatbotWidget }; // Also ensure the custom element is registered if (typeof window !== 'undefined' && !customElements.get('chatbot-widget')) { customElements.define('chatbot-widget', ChatbotWidget); }