React + Typescript:TypeScript错误:“ string”类型与“ CSSProperties”类型没有共同的属性

时间:2019-04-19 04:21:02

标签: css reactjs typescript

我正在将Typescript与React一起使用,目前正面临该问题

Error in Compiling

1 个答案:

答案 0 :(得分:2)

style属性需要一个具有样式属性而不是字符串的对象:

style={{
    backgroundImage: "url('https://source.unsplash.com/07fzqFEfLlo/1920x1080')"
}}

See the React docs on the subject.