import { EffectCoverflow } from 'swiper' import 'swiper/css/effect-coverflow' import { FC, PropsWithChildren } from 'react' import { Swiper, SwiperProps } from 'swiper/react' import Box from '@mui/material/Box' const SwiperEffectCoverflow: FC< PropsWithChildren<{ swiperProps: SwiperProps }> > = ({ children, swiperProps }) => { return ( {children} ) } export default SwiperEffectCoverflow