UNPKG

@foreverrbum/ethsign

Version:

This package will allow you to electronically sign documents within your application

18 lines (15 loc) 461 B
import React from 'react'; import * as Highcharts from 'highcharts'; import HighchartsReact from 'highcharts-react-official'; export const Chart = (props) => { return ( <HighchartsReact oneToOne={true} redraw={false} // key={Math.random()} highcharts={Highcharts} {...props} containerProps = {{ className: props.className}} /> ) }