/** @format */ /** * External dependencies */ import { Component, Fragment } from '@wordpress/element'; import PropTypes from 'prop-types'; /** * WooCommerce dependencies */ import { ReportFilters } from '@woocommerce/components'; /** * Internal dependencies */ import { filters, advancedFilters } from './config'; import CustomersReportTable from './table'; export default class CustomersReport extends Component { render() { const { isRequesting, query, path } = this.props; const tableQuery = { orderby: 'date_last_active', order: 'desc', ...query, }; return ( ); } } CustomersReport.propTypes = { query: PropTypes.object.isRequired, };