import { cn } from '@/lib/utils' import React from 'react' type UserMessageProps = { message: string isFirstMessage?: boolean } export const UserMessage: React.FC = ({ message, isFirstMessage }) => { return (
{message}
) }