import { formatSql } from '@/utils'; import { CodePreview } from './code-preview'; interface Props { data: { display_type: string; sql: string; thought: string; }; } function VisConvertError({ data }: Props) { return (
{data.display_type}
{data.thought}
); } export default VisConvertError;