blob: fa1e175d51e0c4ff1ca82cf07165b8bdaa29499b (
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
|