import React from 'react'; import { Bar } from 'react-chartjs-2'; const HealthBarChart = (props) => { const { globalUrl, filteredData, options, onBarClick } = props; return ( { if (elements && elements.length > 0) { onBarClick(elements); } }} /> ); }; export default HealthBarChart;