/** @format */ /** * External dependencies */ import { Component, Fragment } from '@wordpress/element'; import PropTypes from 'prop-types'; /** * WooCommerce dependencies */ import { ReportFilters } from '@woocommerce/components'; /** * Internal dependencies */ import { charts } from './config'; import getSelectedChart from 'lib/get-selected-chart'; import ReportChart from 'analytics/components/report-chart'; import ReportSummary from 'analytics/components/report-summary'; import RevenueReportTable from './table'; export default class RevenueReport extends Component { render() { const { path, query } = this.props; return ( ); } } RevenueReport.propTypes = { path: PropTypes.string.isRequired, query: PropTypes.object.isRequired, };