import React from 'react'; import ChatbotMessage from '../ChatbotMessage/ChatbotMessage'; import './ChatbotError.css'; interface IChatbotErrorProps { message: string; } const ChatbotError = ({ message }: IChatbotErrorProps) => { return (

Ooops. Something is missing.

View the docs
); }; export default ChatbotError;