首页 > 技术文章 > React 报错 Attempted import error: 'injectGlobal' is not exported from 'styled-components'.

bocaimao 2020-12-09 11:24 原文

React 使用 styled-components 设置全局样式时,使用如下代码,但是报错Attempted import error: 'injectGlobal' is not exported from 'styled-components

 

 只需要将injectGlobal 改为 CreateGlobalStyle即可,因为styled-components废弃全局属性injectGlobal,将其更改为createGlobalStyle。

 

推荐阅读