import { NextPageWithExtras } from "next"; import { WebhookTable } from "@/components/WebhookTable"; const WebhooksPage: NextPageWithExtras = () => { return (

Webhook Logs

); }; WebhooksPage.auth = true; export default WebhooksPage;