React.js C3 integration component
importChartfrom'react-c3-component';import'c3/c3.css';exportdefaultfunctionSimpleLineChart(){return(<Chartconfig={{// Add your C3 config excluding bindto here// http://c3js.org/reference.htmldata: {columns: [['data1',30,200,100,400,150,250],['data2',50,20,10,40,15,25]]}}}/>)}