LibreChat/client/src/components/Chat/Messages/ui/PlaceholderRow.tsx

11 lines
232 B
TypeScript
Raw Normal View History

import { memo } from 'react';
const PlaceholderRow = memo(({ isCard }: { isCard?: boolean }) => {
if (!isCard) {
return null;
}
return <div className="mt-1 h-[27px] bg-transparent" />;
});
export default PlaceholderRow;