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