blankField.tsx 415 B

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