import React, { FC } from 'react'; import { Carousel } from 'react-responsive-carousel'; import './index.css'; export interface CarouselContainerProps { children?: []; } const CarouselContainer: FC = ({ children }) => ( 1} swipeable={children.length > 1} > {children} ); export default CarouselContainer;