React 报错 Attempted import error: 'injectGlobal' is not exported from 'styled-components'.
React 使用 styled-components 设置全局样式时,使用如下代码,但是报错Attempted import error: 'injectGlobal' is not exported from 'styled-components
只需要将injectGlobal 改为 CreateGlobalStyle即可,因为styled-components废弃全局属性injectGlobal,将其更改为createGlobalStyle。