Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Last active January 29, 2017 04:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DZuz14/772d75695d5b8fc26bca4c7784664c64 to your computer and use it in GitHub Desktop.
Save DZuz14/772d75695d5b8fc26bca4c7784664c64 to your computer and use it in GitHub Desktop.
One of the slide components with a background image added
import React, { Component } from 'react';
const SlideThree= (props) => {
let background = {
backgroundImage: 'url(aurora.jpg)',
backgroundSize: 'cover',
backgroundPosition: 'center'
}
return <div style={background} className="slide"></div>
}
export default SlideThree;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment