import { Webhook } from "@lib/webhook"; import WebhookListItem from "./WebhookListItem"; export default function WebhookList(props: { webhooks: Webhook[]; onChange: () => void; onEditWebhook: (webhook: Webhook) => void; }) { return (
); }