/** @format */ /** * External dependencies */ import { Component, Fragment } from '@wordpress/element'; import PropTypes from 'prop-types'; /** * WooCommerce dependencies */ import { Card } from '@woocommerce/components'; /** * Internal dependencies */ import ReportChart from 'analytics/components/report-chart'; import './block.scss'; class ChartBlock extends Component { render() { const { charts, endpoint, path, query } = this.props; if ( ! charts || ! charts.length ) { return null; } return ( ); } } ChartBlock.propTypes = { charts: PropTypes.array, endpoint: PropTypes.string.isRequired, path: PropTypes.string.isRequired, query: PropTypes.object.isRequired, }; export default ChartBlock;