import type React from "react"; const ResultBlock: React.FC<{ error?: string; result?: any }> = ({ error, result, }) => (
Error: {error}
{typeof result === "object" ? JSON.stringify(result, null, 2) : result}