/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { registerPlugin } from '@wordpress/plugins'; import { Fill as NotificationFill } from '@wordpress/components'; import { AbbreviatedCard } from '@woocommerce/components'; import { page } from '@wordpress/icons'; import { Text } from '@woocommerce/experimental'; const MyAbbreviatedNotification = () => { return ( { __( 'Abbreviated Notification Example', 'plugin-domain' ) } { __( 'This is an unread notifications', 'plugin-domain' ) } ); }; registerPlugin( 'my-abbreviated-notification', { render: MyAbbreviatedNotification, } );