/** @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, filters } from './config'; import getSelectedChart from 'lib/get-selected-chart'; import ReportChart from 'analytics/components/report-chart'; import ReportSummary from 'analytics/components/report-summary'; import TaxesReportTable from './table'; export default class TaxesReport extends Component { render() { const { query, path } = this.props; return ( ); } } TaxesReport.propTypes = { query: PropTypes.object.isRequired, };