import React from 'react'
import ReactApexChart from 'react-apexcharts'
import './styles.css'
const ApexChart = () => {
const [state, setState] = React.useState({
series: [72],
options: {
chart: {
height: 350,
type: 'gauge',
},
labels: ['Progress'],
},
})
return (
<div>
<div id="chart">
<ReactApexChart
options={state.options}
series={state.series}
type="gauge"
height={350}
/>
</div>
</div>
)
}
export default ApexChart