/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Button } from '@wordpress/components'; import { registerPlugin } from '@wordpress/plugins'; import { WooNavigationItem } from '@woocommerce/navigation'; const MyPlugin = () => { const handleClick = () => { alert( 'Menu item clicked!' ); }; return ( ); }; registerPlugin( 'my-plugin', { render: MyPlugin, scope: 'woocommerce-navigation', } );