import React from 'react'; import TextInputArea from '@/components/TextInputArea'; import { cn } from '@/lib/utils'; export interface JsonDiffInputProps extends Omit, 'onChange'> { label: string; placeholder: string; value: string; onChange: (value: string) => void; error?: string | null; minRows?: number; } export default function JsonDiffInput({ label, placeholder, value, onChange, error, minRows = 10, className, ...props }: JsonDiffInputProps) { return (
{label}
); }