Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Last active October 4, 2018 11:21
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/97aa450a0afd056608ffa1db9227c4e1 to your computer and use it in GitHub Desktop.
Save DZuz14/97aa450a0afd056608ffa1db9227c4e1 to your computer and use it in GitHub Desktop.
Setting Background Image on Slide
import React from 'react'
const Slide = ({ image }) => {
const styles = {
backgroundImage: `url(${image})`,
backgroundSize: 'cover',
backgroundRepeat: 'no-repeat',
backgroundPosition: '50% 60%'
}
return <div className="slide" style={styles}></div>
}
export default Slide
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment