Convert react style with object to inline css(string).
npm install react-style-object-to-cssjs
npm install react-style-object-to-css
`Example
`js
const reactToCSS = require('react-style-object-to-css')
const styleObj = {
backgroundColor: 'blue',
fontSize: 14
}// result === "background-color: blue; font-size: 14px;"
const result = reactToCSS(styleObj)
``