summaryrefslogtreecommitdiff
path: root/src/lib/product/components/Skeleton/ProductSearchSkeleton.jsx
blob: 3447df79cb4ef09a930b7b23c826d6fa65056ae8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import ProductCardSkeleton from '@/core/components/elements/Skeleton/ProductCardSkeleton'

const ProductSearchSkeleton = () => (
  <div className='p-4 grid grid-cols-2 md:grid-cols-5 gap-4'>
    <ProductCardSkeleton />
    <ProductCardSkeleton />
    <ProductCardSkeleton />
    <ProductCardSkeleton />
    <ProductCardSkeleton />
    <ProductCardSkeleton />
    <ProductCardSkeleton />
    <ProductCardSkeleton />
    <ProductCardSkeleton />
    <ProductCardSkeleton />
  </div>
)

export default ProductSearchSkeleton