plane/web/components/web-hooks/webhooks-list.tsx
Muhamade Sabith .T.U 6174833dc2 feat/webhooks
2023-10-27 19:54:21 +05:30

26 lines
767 B
TypeScript

import React from "react";
import { Button } from "@plane/ui";
import { WebhooksListItem } from "./webhooks-list-item";
export const WebhookLists = () => {
return (
<div className="pr-9 py-8 w-full overflow-y-auto">
<div className="flex items-center justify-between gap-4 py-3.5 border-b border-custom-border-200">
<h4 className="text-xl font-medium">Webhooks</h4>
<Button variant="primary" size="sm">
Add webhook
</Button>
</div>
{/* List */}
<div className="divide-y divide-custom-border-200">
<WebhooksListItem />
<WebhooksListItem />
<WebhooksListItem />
<WebhooksListItem />
<WebhooksListItem />
<WebhooksListItem />
</div>
</div>
);
};