Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React + Typescript : TypeScript error: Type 'string' has no properties in common with type 'CSSProperties'

I am using Typescript with React and is currently facing the issue

Error in Compiling

like image 949
Manoj Sethi Avatar asked Sep 11 '25 20:09

Manoj Sethi


1 Answers

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.

like image 61
Dylan Walker Avatar answered Sep 13 '25 10:09

Dylan Walker