link-stack/apps/metamigo-frontend/app/_components/webhooks/index.ts

15 lines
366 B
TypeScript
Raw Normal View History

2023-06-28 12:55:24 +00:00
"use client";
2023-05-25 07:03:57 +00:00
import WebhookIcon from "@mui/icons-material/Send";
2023-02-13 12:41:30 +00:00
import WebhookList from "./WebhookList";
import WebhookEdit from "./WebhookEdit";
import WebhookCreate from "./WebhookCreate";
// eslint-disable-next-line import/no-anonymous-default-export
export default {
list: WebhookList,
create: WebhookCreate,
edit: WebhookEdit,
icon: WebhookIcon,
};