# hicharts

Use highcharts to create charts in React.

## Usage

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(
  <Hicharts options={options}/>,
  document.getElementById('chart')
);

```
