blankField.tsx 355 B

123456789101112
  1. import Field, {FieldProps} from 'sentry/components/forms/field';
  2. /**
  3. * This class is meant to hook into `fieldFromConfig`. Like the FieldSeparator
  4. * class, this doesn't have any fields of its own and is just meant to make
  5. * forms more flexible.
  6. */
  7. function BlankField(props: FieldProps) {
  8. return <Field {...props} />;
  9. }
  10. export default BlankField;