import ReactMarkdown from "react-markdown"; type AnswerBubbleProps = { text: string; loading?: boolean; }; export const AnswerBubble = ({ text, loading }: AnswerBubbleProps) => { return (
{loading ? (
) : (
{"🐈: " + text}
)}
); };