import { createGlobalStyle } from 'styled-components'
来源:7-1 项目目录搭建,Styled-Components 与 Reset.css 的结合使用
该比率
2019-06-18
这个api 已经废除了
export const Globalstyle = createGlobalStyle `
body {
margin: 0;
padding: 0;
font-family: sans-serif;
background:green
}
`
写回答
2回答
-
宝慕林6688393
2019-06-28
这个 api 已被废弃,替代 api 是 createGlobalStyle。原文如下
[Deprecated] injectGlobal
NOTE
The injectGlobal API was removed and replaced by createGlobalStyle in styled-components v4.
原文连链接:https://www.styled-components.com/docs/api
00 -
笨也不能妄自菲薄
2019-06-19
确实已经废除了,还有一点,公共css里面是不是必须要导出常量在index.js引入组件形式公共css才能有效?不像视频里直接引入就能用,是这样吧?
import { GlobalStyle } from './style'
00
相似问题