mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-10-05 09:55:25 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 12m20s
23 lines
643 B
TypeScript
23 lines
643 B
TypeScript
import DevicesTableSkeleton from "@/components/device-table-skeleton";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
|
|
export default function LoadingComponent() {
|
|
return (
|
|
<div>
|
|
<div className="flex justify-between items-center border rounded-md border-dashed font-bold title-bg py-4 px-2 mb-4">
|
|
<Skeleton className="w-48 h-8" />
|
|
<Skeleton className="w-20 h-8" />
|
|
</div>
|
|
<div
|
|
id="user-filters"
|
|
className=" pb-4 gap-4 flex sm:flex-row flex-col items-start justify-endO"
|
|
>
|
|
<DevicesTableSkeleton
|
|
headers={["Details", "Duration", "Status", "Amount"]}
|
|
length={10}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|