Converts style properties into React format
npm install --save react-style-converter
var convert = require('react-style-converter')
var reactStyle = convert('background-image') // Outputs: backgroundImage
import convert from 'react-style-converter'
let reactStyle = convert('background-image') // Outputs: backgroundImage
This library is heavily inspired from react-attr-converter