woocommerce/plugins/woocommerce-admin/client/components/rating/example.md

26 lines
473 B
Markdown
Raw Normal View History

```jsx
import { ReviewRating, ProductRating, Rating } from '@woocommerce/components';
const MyRating = () => {
const product = { average_rating: 3.5 };
const review = { rating: 5 };
return (
<div>
<div>
<Rating rating={ 4 } totalStars={ 5 } />
</div>
<div>
<Rating rating={ 2.5 } totalStars={ 6 } />
</div>
<div>
<ProductRating product={ product } />
</div>
<div>
<ReviewRating review={ review } />
</div>
</div>
);
};
```