I am running into multiple warnings related to an inline style background image. Using React-static, I didn't have any issues, but now with Gatsby I am getting this error:
warning Unexpected string concatenation of literals
If I only wanted to use an inline style, how would I go about coding this?
Right now, I am importing my background image and using an inline style. I would rather import the image and use an inline style instead of creating multiple CSS styles.
Code:
import Background from '../img/background.gif';
<div id="hero" className="header-banner" style={{background: 'url(' + `${Background}` + ')'}}></div>