import clsx from 'clsx'; import React from 'react'; type TextMessageProps = { text: string; isUser: boolean; }; export function TextMessage({ text, isUser }: TextMessageProps) { return (
{text}
); }