关于injectGlobal被弃用的问题

2019-06-06  本文已影响0人  肉肉肉肉_包

在styled-component 4.X版本中injectGlobal API除去,用 createGlobalStyle替换了之前的injectGlobal
使用方法:

import { createGlobalStyle } from 'styled-components'

export const Globalstyle = createGlobalStyle` 
  body{
  margin: 0;
  padding: 0;
    background: green;
 }
`

在项目主文件引入

import { Globalstyle } from './style'

然后把Globalstyle以样式组件的方式当作标签引入

function App() {
  return (
    <Fragment>
      <Globalstyle />
    </Fragment> 
  );
}
上一篇下一篇

猜你喜欢

热点阅读