summaryrefslogtreecommitdiff
path: root/src/lib/home/components/Skeleton/PopularProductSkeleton.jsx
blob: 18a1b3d395b25106e0b64f2cf004603a4e0cb5e8 (plain)
1
2
3
4
5
6
7
8
9
10
import ProductCardSkeleton from '@/core/components/elements/Skeleton/ProductCardSkeleton'

const PopularProductSkeleton = () => (
  <div className='grid grid-cols-2 gap-x-3'>
    <ProductCardSkeleton />
    <ProductCardSkeleton />
  </div>
)

export default PopularProductSkeleton