2024-02-19 15:37:43 +00:00
|
|
|
import React from "react";
|
|
|
|
// ui
|
2024-02-22 09:17:12 +00:00
|
|
|
import { Loader } from "@plane/ui";
|
2024-03-06 13:09:14 +00:00
|
|
|
import { InboxSidebarLoader } from "./inbox-sidebar-loader";
|
2024-02-19 15:37:43 +00:00
|
|
|
|
|
|
|
export const InboxLayoutLoader = () => (
|
2024-04-08 13:41:47 +00:00
|
|
|
<div className="relative w-full h-full flex overflow-hidden">
|
|
|
|
<div className="flex-shrink-0 w-2/6 h-full border-r border-custom-border-300">
|
|
|
|
<InboxSidebarLoader />
|
|
|
|
</div>
|
|
|
|
<div className="w-4/6">
|
|
|
|
<Loader className="flex flex-col h-full gap-5 p-5">
|
|
|
|
<div className="space-y-2">
|
2024-02-22 09:17:12 +00:00
|
|
|
<Loader.Item height="30px" width="40%" />
|
|
|
|
<Loader.Item height="15px" width="60%" />
|
|
|
|
<Loader.Item height="15px" width="60%" />
|
|
|
|
<Loader.Item height="15px" width="40%" />
|
2024-02-19 15:37:43 +00:00
|
|
|
</div>
|
2024-04-08 13:41:47 +00:00
|
|
|
<Loader.Item height="150px" />
|
2024-02-22 09:17:12 +00:00
|
|
|
</Loader>
|
2024-02-19 15:37:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|