import { Skeleton } from '@/components/ui/skeleton'; const SellerSkeleton = ({ steps }) => { return (
{/* Left Side - Seller Detail Card Skeleton */}
{[1, 2, 3, 4, 5].map(i => ( ))}
{/* Right Side - Content Skeleton */}
{/* Tabs Skeleton */}
{/* Content Area Skeleton */} {steps === 1 ? ( // Listings Skeleton
{[1, 2, 3, 4, 5, 6].map(i => (
))}
) : ( // Ratings Skeleton
{[1, 2, 3, 4, 5].map(i => ( ))}
{[5, 4, 3, 2, 1].map(i => (
))}
)}
); }; export default SellerSkeleton;