Files
probo/apps/console/src/components/AppSidebarSkeleton.tsx
Bryan Frimin 14e338b4c4 Style
Signed-off-by: Bryan Frimin <bryan@getprobo.com>
2025-05-03 18:19:20 -07:00

19 lines
563 B
TypeScript

import { AppSidebarShell } from "./AppSidebarShell";
import { NavMainSkeleton } from "./NavMainSkeleton";
import { NavUserSkeleton } from "./NavUserSkeleton";
import { OrganizationSwitcherSkeleton } from "./OrganizationSwitcherSkeleton";
import { Sidebar } from "./ui/sidebar";
export function AppSidebarSkeleton(
props: React.ComponentProps<typeof Sidebar>,
) {
return (
<AppSidebarShell
organizationSwitcher={<OrganizationSwitcherSkeleton />}
navMain={<NavMainSkeleton />}
navUser={<NavUserSkeleton />}
{...props}
/>
);
}