mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
26 lines
797 B
TypeScript
26 lines
797 B
TypeScript
"use client";
|
|
|
|
import React from "react";
|
|
// ui
|
|
import { Loader } from "@plane/ui";
|
|
import { InboxSidebarLoader } from "./inbox-sidebar-loader";
|
|
|
|
export const InboxLayoutLoader = () => (
|
|
<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">
|
|
<Loader.Item height="30px" width="40%" />
|
|
<Loader.Item height="15px" width="60%" />
|
|
<Loader.Item height="15px" width="60%" />
|
|
<Loader.Item height="15px" width="40%" />
|
|
</div>
|
|
<Loader.Item height="150px" />
|
|
</Loader>
|
|
</div>
|
|
</div>
|
|
);
|