Created
March 13, 2018 12:44
-
-
Save BartusZak/3aa3e52df667d685e73c87248516e008 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 React from 'react'; | |
import './Advert.css'; | |
import Aux from '../../../hoc/Auxi'; | |
import {Carousel, CarouselItem, CarouselCaption} from 'reactstrap'; | |
import billeniumLogo from '../../../assets/img/homePage/billennium.png'; | |
import uwmLogo from '../../../assets/img/homePage/uwmLogo.png'; | |
const advert = (props) => { | |
return ( | |
<Carousel> | |
<CarouselItem> | |
<img width={900} height={500} alt="900x500" src={billeniumLogo} /> | |
<CarouselCaption> | |
<h3>First slide label</h3> | |
<p>Nulla vitae elit libero, a pharetra augue mollis interdum.</p> | |
</CarouselCaption> | |
</CarouselItem> | |
</Carousel> | |
); | |
} | |
export default advert; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment