Installation
Install
npm install @simplersuite/reactpnpm add @simplersuite/reactyarn add @simplersuite/reactRequirements
- React 18+
- A SimplerSuite Reviews API key (from your dashboard under Settings → API)
Quick Start
import { SimplerSuiteReviewsProvider, ReviewSummary, ReviewList,} from '@simplersuite/react';
function ProductPage({ product }) { return ( <SimplerSuiteReviewsProvider apiKey="sr_your_api_key" shopDomain="your-store.myshopify.com" > <h1>{product.title}</h1> <ReviewSummary productId={product.id} /> {/* ... product content ... */} <ReviewList productId={product.id} perPage={10} /> </SimplerSuiteReviewsProvider> );}