import React, {useEffect} from 'react'; import Chart from 'chart.js/auto'; import {merge} from 'chart.js/helpers'; function AppAuto() { useEffect(() => { const c = Chart.getChart('myChart'); if (c) { c.destroy(); } merge({a: 1}, {b: 2}); // eslint-disable-next-line no-new new Chart('myChart', { type: 'doughnut', data: { labels: ['Chart', 'JS'], datasets: [{ data: [2, 3] }] } }); }, []); return (
); } export default AppAuto;