custom-form-components.tsx 206 B

12345
  1. import { CustomFormComponentInputProps, Textarea } from '@vendure/dashboard';
  2. export function TextareaCustomField({ field }: CustomFormComponentInputProps) {
  3. return <Textarea {...field} rows={4} />;
  4. }