import { Carousel } from 'antd' import { LeftCircleFilled, RightCircleFilled } from '@ant-design/icons' import photoNotFound from '../materials/photoNotFound.png' const SampleNextArrow = (props) => { const { onClick } = props return (
) } const SamplePrevArrow = (props) => { const { onClick } = props return (
) } export const MyCarousel = ({ images = [] }) => { return ( <>
} prevArrow={} > {images ? ( images?.map( (i, index) => i?.url && (
), ) ) : (
)}
) }