Fork of react-chartjs to make it easier to import with webpack or other CommonJS module loader
var ReactChart = require("react-chartjs-commonjs");
var MyComponent = React.createClass({
render: function() {
return <ReactChart.Line data={chartData} options={chartOptions} width="600" height="250"/>
}
});