Add login in/out handling, fix async validation
[arvados-workbench2.git] / src / views-components / form-fields / process-form-fields.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from "react";
6 import { Field, WrappedFieldProps } from "redux-form";
7 import { TextField } from "~/components/text-field/text-field";
8 import { PROCESS_NAME_VALIDATION } from "~/validators/validators";
9
10 export const ProcessNameField = () =>
11     <Field
12         name='name'
13         component={TextField}
14         validate={PROCESS_NAME_VALIDATION}
15         label="Process Name" />;