Backgroundimage is not working in react
CSS values are always strings. Wrap the backgroundImage
value in quotation marks to make it a string:
<div className="phase1" style ={ { backgroundImage: "url('https://lh3.googleusercontent.com/MOf9Kxxkj7GvyZlTZOnUzuYv0JAweEhlxJX6gslQvbvlhLK5_bSTK6duxY2xfbBsj43H=w300')" } }>
Faced a similar problem and this did the trick for me
style={{backgroundImage: 'url(' + require('./images/sword.png') + ')'}}
the trick was adding the require