d70413f6433f5e0c0b287f1af8346f12e1fcbba7
[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 React from "react";
6 import { Field } from "redux-form";
7 import { TextField } from "components/text-field/text-field";
8 import { PROCESS_NAME_VALIDATION, PROCESS_DESCRIPTION_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" />;
16
17 export const ProcessDescriptionField = () =>
18     <Field
19         name='description'
20         component={TextField}
21         validate={PROCESS_DESCRIPTION_VALIDATION}
22         label="Process Description" />;