import { EmptyState, ResourceList, ResourceItem, InlineStack, Avatar, BlockStack, Text, Badge } from "@shopify/polaris"; export function ReviewList({ reviews }) { if (reviews.length === 0) { return ( Track your customer feedback in one place. Your store has no reviews yet. ); } return ( { const { id, customer_name, content, rating, product_id } = item; const productIdNum = product_id?.split('/').pop() || ''; return ( { window.open(`shopify:admin/products/${productIdNum}`, "_top"); }} accessibilityLabel={`View details for ${customer_name}`} > {customer_name || 'Anonymous'} {content} {rating || "5"} / 5 ★ Product ID: {productIdNum} ); }} /> ); }
Track your customer feedback in one place. Your store has no reviews yet.