import React from 'react'; export default function Conversation({ id, title = 'New conversation'}) { return (
{title}
); }