export type Props = {
    defaultRating?:number;
    maxRating?:number;
    getCurrentRating?: (rating: number) => void;

}