Reputation: 2038
I am using Typescript with React and is currently facing the issue
Upvotes: 24
Views: 32891
Reputation: 1127
The style
attribute expects an object with style properties rather than a string:
style={{
backgroundImage: "url('https://source.unsplash.com/07fzqFEfLlo/1920x1080')"
}}
See the React docs on the subject.
Upvotes: 43