// components import { WebhookSecretKey } from "./form"; // ui import { Button } from "@plane/ui"; // types import { IWebhook } from "types"; type Props = { handleClose: () => void; webhookDetails: IWebhook; }; export const GeneratedHookDetails: React.FC = (props) => { const { handleClose, webhookDetails } = props; return (

Key created

Copy and save this secret key in Plane Pages. You can{"'"}t see this key after you hit Close. A CSV file containing the key has been downloaded.

); };