trc-client-core
Version:
The core of the TRC Client
17 lines (14 loc) • 464 B
JSX
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;