Spaces:
Sleeping
Sleeping
File size: 323 Bytes
8f7821c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import { memo } from 'react';
import { Markdown } from './Markdown';
interface AssistantMessageProps {
content: string;
}
export const AssistantMessage = memo(({ content }: AssistantMessageProps) => {
return (
<div className="overflow-hidden w-full">
<Markdown html>{content}</Markdown>
</div>
);
});
|