22 lines
540 B
TypeScript
22 lines
540 B
TypeScript
import { Conversation } from '@/types/chat';
|
|
|
|
import { ConversationComponent } from './Conversation';
|
|
|
|
interface Props {
|
|
conversations: Conversation[];
|
|
}
|
|
|
|
export const Conversations = ({ conversations }: Props) => {
|
|
return (
|
|
<div className="flex w-full flex-col gap-1">
|
|
{conversations
|
|
.filter((conversation) => !conversation.folderId)
|
|
.slice()
|
|
.reverse()
|
|
.map((conversation, index) => (
|
|
<ConversationComponent key={index} conversation={conversation} />
|
|
))}
|
|
</div>
|
|
);
|
|
};
|