mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
b1989bae1b
* dev: implement layout skeleton loader and helper function * chore: implemented layout loader * chore: settings loader added * chore: cycle, module, view, pages, notification and projects loader added * chore: kanban loader improvement * chore: loader utils updated
21 lines
861 B
TypeScript
21 lines
861 B
TypeScript
export const WebhookSettingsLoader = () => (
|
|
<div className="h-full w-full overflow-hidden py-8 pr-9">
|
|
<div className="flex h-full w-full flex-col">
|
|
<div className="flex items-center justify-between gap-4 border-b border-custom-border-200 pb-3.5">
|
|
<div className="text-xl font-medium">Webhooks</div>
|
|
<span className="h-8 w-28 bg-custom-background-80 rounded" />
|
|
</div>
|
|
<div className="h-full w-full overflow-y-auto">
|
|
<div className="border-b border-custom-border-200">
|
|
<div>
|
|
<span className="flex items-center justify-between gap-4 px-3.5 py-[18px]">
|
|
<span className="h-5 w-36 bg-custom-background-80 rounded" />
|
|
<span className="h-6 w-12 bg-custom-background-80 rounded" />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|