import type { MessagePart } from "../../types"; interface ReasoningBlockProps { part: MessagePart; } export function ReasoningBlock(props: ReasoningBlockProps) { return (
Thinking
{props.part.text}
); }