diff options
Diffstat (limited to 'src/lib/wishlist/components')
| -rw-r--r-- | src/lib/wishlist/components/Wishlists.jsx | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/lib/wishlist/components/Wishlists.jsx b/src/lib/wishlist/components/Wishlists.jsx index 8a456a8d..4bb63933 100644 --- a/src/lib/wishlist/components/Wishlists.jsx +++ b/src/lib/wishlist/components/Wishlists.jsx @@ -15,16 +15,22 @@ const Wishlists = () => { const pageCount = Math.ceil(wishlists.data?.productTotal / limit) + if (wishlists.isLoading) { + return ( + <div className="flex justify-center my-6"> + <Spinner className="w-6 text-gray_r-12/50 fill-gray_r-12" /> + </div> + ) + } + return ( <div className="px-4 py-6"> - { wishlists.isLoading && ( - <Spinner className="w-6 h-6 text-gray-600 fill-gray-900 mx-auto" /> - ) } { wishlists.data?.products?.length == 0 && ( <Alert type='info' className='text-center'> Wishlist anda masih kosong </Alert> ) } + <div className="grid grid-cols-2 gap-3"> {wishlists.data?.products.map((product) => ( <ProductCard key={product.id} data={product} /> |
