import React from 'react'; import Conversation from './Conversation'; export default function Conversations({ conversations }) { return (
{conversations && conversations.map((convo, i) => ( ))} {conversations && conversations.length >= 12 && ( )}
); }