import React from 'react';
import Carousel from 'trc-client-core/src/components/Carousel';
import {WARRANTY_1, WARRANTY_2, WARRANTY_3} from 'trc-client-core/src/media/CarouselContent';

var WarrantyCarousel = React.createClass({
    displayName: 'WarrantyCarousel',
    render() {
        return <Carousel modifier="hero">
            {WARRANTY_1}
            {WARRANTY_2}
            {WARRANTY_3}
        </Carousel>
    }
});

module.exports = WarrantyCarousel;
