// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; import { InjectedFormProps, Field } from 'redux-form'; import { WithDialogProps } from '~/store/dialog/with-dialog'; import { FormDialog } from '~/components/form-dialog/form-dialog'; import { ProjectTreePickerField } from '~/views-components/project-tree-picker/project-tree-picker'; import { COPY_NAME_VALIDATION, COPY_PROJECT_VALIDATION } from '~/validators/validators'; import { TextField } from "~/components/text-field/text-field"; import { ProjectCopyFormDialogData } from "~/store/project-copy-dialog/project-copy-dialog"; type ProjectCopyFormDialogProps = WithDialogProps & InjectedFormProps; export const ProjectCopyFormDialog = (props: ProjectCopyFormDialogProps) => ; const ProjectCopyFields = () => ;