You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
607 B
32 lines
607 B
import Carousel from 'react-slick';
|
|
import React from 'react';
|
|
import assign from 'object-assign';
|
|
|
|
const AntCarousel = React.createClass({
|
|
getDefaultProps() {
|
|
return {
|
|
dots: true,
|
|
arrows: false
|
|
};
|
|
},
|
|
render() {
|
|
let props = assign({}, this.props);
|
|
|
|
if (props.effect === 'fade') {
|
|
props.fade = true;
|
|
}
|
|
|
|
let className = 'ant-carousel';
|
|
if (props.vertical) {
|
|
className = className + ' ant-carousel-vertical';
|
|
}
|
|
|
|
return (
|
|
<div className={className}>
|
|
<Carousel {...props} />
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default AntCarousel;
|
|
|