Carousel

Basic Carousel

To show this type of Cards you will need this code in down here.

     
<Carousel
      activeIndex={activeIndex}
      next={this.next}
      previous={this.previous}>
      <CarouselIndicators items={items} activeIndex={activeIndex} onClickHandler={this.goToIndex} />
      {slides}
      <CarouselControl direction="prev" directionText="Previous" onClickHandler={this.previous} />
      <CarouselControl direction="next" directionText="Next" onClickHandler={this.next} />
</Carousel>
  

Product Carousel

     
<OwlCarousel className="owl-theme owl-app-frame" {...options} >
    <ProductItem product={products[0]} />
    <ProductItem product={products[1]} />
    <ProductItem product={products[2]} />
    <ProductItem product={products[3]} />
    <ProductItem product={products[4]} />
    <ProductItem product={products[5]} />
</OwlCarousel>