import clsx from 'clsx'; import React from 'react'; type CustomLinkProps = { href?: string; children?: React.ReactNode; }; const CustomLink = ({ href, children, ...props }: CustomLinkProps) => ( {children} ); type TextMessageProps = { text: string; isUser: boolean; }; export function TextMessage({ text, isUser }: TextMessageProps) { return (
{text}
); }