import { cn } from "@/lib/utils"; import { Skeleton } from "@/components/ui/skeleton"; interface LoadingProps { className?: string; } export function Loading({ className, ...props }: LoadingProps) { return (
); }