16 lines
415 B
TypeScript
16 lines
415 B
TypeScript
import { Skeleton } from "@/components/ui/skeleton";
|
|
import { DashboardHeader } from "@/components/dashboard/header";
|
|
|
|
export default function OrdersLoading() {
|
|
return (
|
|
<>
|
|
<DashboardHeader
|
|
heading="User Management"
|
|
text="List and manage all users."
|
|
/>
|
|
<Skeleton className="h-32 w-full rounded-lg" />
|
|
<Skeleton className="h-[400px] w-full rounded-lg" />
|
|
</>
|
|
);
|
|
}
|