import Link from 'next/link'; import { Panel } from '@/components/ui/panel'; import type { CompanyBullBear } from '@/lib/types'; type BullBearPanelProps = { bullBear: CompanyBullBear; researchHref: string; onLinkPrefetch?: () => void; }; export function BullBearPanel(props: BullBearPanelProps) { const hasContent = props.bullBear.bull.length > 0 || props.bullBear.bear.length > 0; return ( {!hasContent ? (
No synthesis inputs are available yet. Add memo sections or filing context in Research to populate this debate surface.
Open research workspace
) : (

Bull case

    {props.bullBear.bull.map((item) => (
  • ))}

Bear case

    {props.bullBear.bear.map((item) => (
  • ))}
)}
); }