react-styled-componedts ('injectGlobal' is not exported from 'styled-components'.)

v4.0 更换成了 createGlobalStyle 

style中

定义const GlobalStyle = createGlobalStyle``

export default GlobalStyle

在App组件中

import store from './store';

<Provider store={store}>
 <Fragment>
     <Header/>
     <GlobalStyle/>
     <GlobalStyleIconfont/>
 </Fragment>
</Provider>



文档https://www.styled-components.com/docs/api


猜你喜欢

转载自www.cnblogs.com/sansancn/p/11203718.html
今日推荐