// 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 { Dialog, DialogTitle, DialogContent, DialogActions, Button, Typography, DialogContentText, CircularProgress } from "@material-ui/core"; import { WithDialogProps } from "../../store/dialog/with-dialog"; import { TextField } from "../text-field/text-field"; export const RenameDialog = (props: WithDialogProps & InjectedFormProps<{ name: string }>) =>
{`Rename`} {`Please, enter a new name for ${props.data}`}
;