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