import { FC } from "react"; // react-hook-form import { UseFormWatch } from "react-hook-form"; // ui import { Button } from "@plane/ui"; // types import { TFormValues, TIntegrationSteps } from "@/components/integration"; type Props = { handleStepChange: (value: TIntegrationSteps) => void; watch: UseFormWatch; }; export const GithubImportConfirm: FC = ({ handleStepChange, watch }) => (

You are about to import issues from {watch("github").full_name}. Click on {'"'}Confirm & Import{'" '} to complete the process.

);