mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
e1bf318317
* chore: project inbox layout loader added * chore: project inbox layout loader added * chore: project inbox added in sidebar project items * chore: inbox loader improvement * chore: project inbox improvement
20 lines
677 B
TypeScript
20 lines
677 B
TypeScript
import React from "react";
|
|
// ui
|
|
import { InboxSidebarLoader } from "./inbox-sidebar-loader";
|
|
|
|
export const InboxLayoutLoader = () => (
|
|
<div className="relative flex h-full overflow-hidden">
|
|
<InboxSidebarLoader />
|
|
<div className="w-full">
|
|
<div className="grid h-full place-items-center p-4 text-custom-text-200">
|
|
<div className="grid h-full place-items-center">
|
|
<div className="my-5 flex flex-col items-center gap-4">
|
|
<span className="h-[60px] w-[60px] bg-custom-background-80 rounded" />
|
|
<span className="h-6 w-96 bg-custom-background-80 rounded" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|