import { FC } from "react"; import Link from "next/link"; import { Button } from "@plane/ui"; import Image from "next/image"; import EmptyWebhookLogo from "public/empty-state/issue.svg"; interface IWebHookLists { workspaceSlug: string; } export const EmptyWebhooks: FC = (props) => { const { workspaceSlug } = props; return (
empty-webhook image
No Webhooks

Create webhooks to receive real-time updates and automate actions

); };