import { Swiper, SwiperSlide } from "swiper/react"; import ProductCard from "../ProductCard"; import ImagePlaceholderIcon from "../../icons/image-placeholder.svg"; import "swiper/css"; export default function ProductSlider({ products }) { return ( <> {products?.products?.map((product, index) => ( ))} {products == null ? (
Loading...
Loading...
) : ''} ) }