Set global styles (e.g. on `document.body`) declaratively.
npm install react-global-style

Set global styles (e.g. on document.body) declaratively.
It's smart enough to not remove class names added in mutlipe places, and to maintain a stack of values for a given style property.
``sh`
npm install --save react-global-style
`jsx
import ReactGlobalStyle from 'react-global-style';
// el defaults to document.body
// el can be a selector
// className can be an array
// style is also supported`
Any help is appreciated! For big changes, file an issue before sending a pull request.
To run the project:
`sh
yarn # or npm install
Make your changes, and then send a pull request. Please keep coverage at 100%.
If you want to test it in a real project,
npm run build creates the lib directory. Then you can npm link` this into your project.