classify web

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:49 +05:00
commit 64af77101f
310 changed files with 45449 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { useId } from "react";
import ProductCardSkeleton from "../../Common/ProductCardSkeleton";
const AllItemsSkeleton = () => {
return (
<>
{Array.from({ length: 8 }).map(() => (
<ProductCardSkeleton key={useId()} />
))}
</>
);
};
export default AllItemsSkeleton;