textField.tsx 211 B

1234567
  1. import InputField from 'sentry/components/forms/inputField';
  2. type Props = InputField['props'];
  3. export default function TextField(props: Omit<Props, 'type'>) {
  4. return <InputField {...props} type="text" />;
  5. }