import React from "react"; import Image from "next/image"; // ui import { Button } from "@plane/ui"; // assets import EmptyWebhook from "public/empty-state/web-hook.svg"; type Props = { onClick: () => void; }; export const WebhooksEmptyState: React.FC = (props) => { const { onClick } = props; return (
empty
No webhooks

Create webhooks to receive real-time updates and automate actions

); };