Last active
June 28, 2018 07:10
-
-
Save roryhow/23e21e378fa5d962456c3291ee026e29 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Carousel } from 'react-bootstrap'; | |
const myCarousel = ( | |
<Carousel> | |
<Carousel.Item> | |
<img width={900} height={500} alt="900x500" src="/carousel.png" /> | |
<Carousel.Caption> | |
<h3>First slide label</h3> | |
<p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p> | |
</Carousel.Caption> | |
</Carousel.Item> | |
<Carousel.Item> | |
<img width={900} height={500} alt="900x500" src="/carousel.png" /> | |
<Carousel.Caption> | |
<h3>Second slide label</h3> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> | |
</Carousel.Caption> | |
</Carousel.Item> | |
<Carousel.Item> | |
<img width={900} height={500} alt="900x500" src="/carousel.png" /> | |
<Carousel.Caption> | |
<h3>Third slide label</h3> | |
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur.</p> | |
</Carousel.Caption> | |
</Carousel.Item> | |
</Carousel> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment