Repository URL to install this package:
|
Version:
2.1.8 ▾
|
import React from 'react'
import { MediaCarousel } from '@skava/ui/dist/components/organisms/MediaCarousel'
import { ProductCarouselProps } from './typings'
import { defaultRenderProductTile } from './renderProps'
class ProductCarousel extends React.PureComponent<ProductCarouselProps> {
static defaultProps = {
className: '',
}
render() {
const passThroughProps = {
renderItem: defaultRenderProductTile,
...this.props,
}
return <MediaCarousel {...passThroughProps} />
}
}
export { ProductCarousel }
export default ProductCarousel