/** * External dependencies */ import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import OrdersPanel from './orders'; export function getAllPanels( { countUnreadOrders, orderStatuses } ) { return [ { className: 'woocommerce-homescreen-card', count: countUnreadOrders, id: 'orders-panel', initialOpen: true, panel: ( ), title: __( 'Orders', 'woocommerce-admin' ), }, // Add another panel row here ]; }