import React from 'react'; export interface RatingBreakdownProps { ratings: number; reviews: number; count: number; } const RatingBreakdown = ({ ratings = 5, reviews = 0, count = 0, }: RatingBreakdownProps) => (
{ratings}