React highcharts, create charts in React.
npm install hichartsUse highcharts to create charts in React.
Install dependencies and save in package.json.
```
npm install hicharts react react-dom highcharts --save
Use like this:
`
import React from 'react';
import ReactDOM from 'react-dom';
import Hicharts from 'hicharts';
const options = {
// highcharts options
};
ReactDOM.render(
document.getElementById('chart')
);
``