React:将CSS类添加到body标签中

时间:2017-07-08 18:25:11

标签: css reactjs

想知道是否有更简单的方法将类添加到body标签。

enter image description here

目前我正在做这样的事情  主要成分

const MAIN_CLASSES = [ three-col, darkTheme, blueHeader, .... etc]

class MainComponent extends React.Component {
  componentDidMount() {
    document.body.classList.add(...MAIN_CLASSES);   
  }

  componentWillUnmount() {
   document.body.classList.remove(...MAIN_CLASSES);
  }

  render() ....
}

有兴趣知道别人在做什么,谢谢你!

0 个答案:

没有答案