type Props = { content: string } export default function TraderPanel({ content }: Props) { if (!content) { return

Waiting for trader analysis…

} return (

Investment Plan

{content}

) }