import TextInputArea from '@/components/TextInputArea'; interface JsonDiffInputProps { label: string; placeholder: string; value: string; onChange: (value: string) => void; error?: string | null; } export default function JsonDiffInput({ label, placeholder, value, onChange, error, }: JsonDiffInputProps) { return (
{label}
); } export { JsonDiffInput }; export type { JsonDiffInputProps };