第七章中的style-component

来源:7-1 项目目录搭建,Styled-Components 与 Reset.css 的结合使用

yjies

2019-12-12

你好,请问一下第七章中的style-component里的injectGlobal好像已经不能用了。
目前是用createGlobalStyle. 请问具体应该如何应用在style.js中? 谢谢

写回答

2回答

27网络

2020-02-09

// src/style.js

import { createGlobalStyle } from 'styled-components';
const GlobalStyle = createGlobalStyle`
  body {
    margin: 0;
    background-color: green;
  }
`;
export default GlobalStyle;


// src/App.js

import React from 'react';
import GlobalStyle from './style';

function App() {
  return (
    <React.Fragment>
      <div className="test">
        hello world;
      </div>
      <GlobalStyle />
    </React.Fragment>
  );
}

export default App;




2
0

Dell

2019-12-12

参考这个文档:https://www.styled-components.com/docs/api#createglobalstyle

0
0

React零基础入门到实战,完成企业级项目简书网站开发

主流新技术 React-redux,React-router4,贯穿基础语法

5275 学习 · 2496 问题

查看课程