/** * External dependencies */ import { __ } from '@wordpress/i18n'; import { Placeholder } from '@wordpress/components'; import { Icon, postComments } from '@wordpress/icons'; const NoCategoryReviewsPlaceholder = () => { return ( } label={ __( 'All Reviews', 'woo-gutenberg-products-block' ) } > { __( 'This block shows a list of all product reviews. Your store does not have any reviews yet, but they will show up here when it does.', 'woo-gutenberg-products-block' ) } ); }; export default NoCategoryReviewsPlaceholder;