blob: e51a565c61a2621719c9bef1b003986d808791d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import ProductCardSkeleton from "@/core/components/elements/Skeleton/ProductCardSkeleton"
const ProductSearchSkeleton = () => (
<div className="p-4 grid grid-cols-2 gap-4">
<ProductCardSkeleton />
<ProductCardSkeleton />
<ProductCardSkeleton />
<ProductCardSkeleton />
<ProductCardSkeleton />
<ProductCardSkeleton />
</div>
)
export default ProductSearchSkeleton
|