import React from "react"; type Props = { data: any | null; }; export default function OutputPanel({ data }: Props) { if (!data) return null; if (data.error) return