import React from 'react'; interface InsightBubbleProps { user: string; time: string; content: string; } export const InsightBubble: React.FC = ({ user, time, content }) => (
{user}
{time}

{content}

);