I am running into multiple warnings related to an inline style background image. Using React-static I had no 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? Any suggestion helps.
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>