emailField.tsx 283 B

123456789101112
  1. import InputField from 'sentry/components/deprecatedforms/inputField';
  2. // XXX: This is ONLY used in GenericField. If we can delete that this can go.
  3. /**
  4. * @deprecated Do not use this
  5. */
  6. export default class EmailField extends InputField {
  7. getType() {
  8. return 'email';
  9. }
  10. }