export default function ThinkingBlock({ thinking, duration}) { if (!thinking) return null; return (
Drafted in {duration}s
{thinking}
); }