```jsx import { EllipsisMenu, MenuItem, MenuTitle } from '@woocommerce/components'; const MyEllipsisMenu = withState( { showCustomers: true, showOrders: true, } )( ( { setState, showCustomers, showOrders } ) => ( Display Stats setState( { showCustomers: ! showCustomers } ) }> setState( { showCustomers: ! showCustomers } ) } /> setState( { showOrders: ! showOrders } ) }> setState( { showOrders: ! showOrders } ) } /> ) ); ```