textField.tsx 223 B

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