UNPKG

@upendradevsingh/webcore

Version:
30 lines (26 loc) 739 B
/** * ======================================================= * WebCore: Carousel Component 1.0.0 * ======================================================= * * Licensed under MIT (https://github.com/upendradevsingh/webcore/blob/master/LICENSE) */ /** * Carousel Component * * @module :: Core Component * @description :: A Responsive Carousel * * @docs :: https://github.com/akiran/react-slick */ import React, {Component} from 'react'; import Slick from 'react-slick'; export default class Carousel extends Component { render() { return ( <Slick {...this.props.settings}> {this.props.children} </Slick> ); } }