{loading ? (
viewMode === "grid" ? (
{[1, 2, 3].map((index) => (
))}
) : (
{[1, 2, 3].map((index) => (
))}
)
) : viewMode === "grid" ? (
{products.map((product, index) => (
handleInvest(product.id)}
/>
))}
) : (
{products.map((product, index) => (
handleInvest(product.id)}
/>
))}
)}