/** * External dependencies */ import { getSetting } from '@woocommerce/settings'; import type { BlockAttributes } from '@wordpress/blocks'; /** * Internal dependencies */ import ReviewListItem from '../review-list-item'; import type { Review } from '../types'; import './style.scss'; interface ReviewListProps { attributes: BlockAttributes; reviews: Review[]; } const ReviewList = ( { attributes, reviews, }: ReviewListProps ): JSX.Element => { const showAvatars = getSetting( 'showAvatars', true ); const reviewRatingsEnabled = getSetting( 'reviewRatingsEnabled', true ); const showReviewImage = ( showAvatars || attributes.imageType === 'product' ) && attributes.showReviewImage; const showReviewRating = reviewRatingsEnabled && attributes.showReviewRating; const attrs = { ...attributes, showReviewImage, showReviewRating, }; return (