import React from 'react'; import { Skeleton } from '../ui'; const AssistantBlock: React.FC<{ widths: string[] }> = ({ widths }) => (
{widths.map((width, index) => ( ))}
); /** Loading placeholder for a conversation's message history. */ const MessagesSkeleton: React.FC = () => ( ); export default MessagesSkeleton;