Vedat Sengul
Results
2
comments of
Vedat Sengul
For the people who are looking for a solution to this problem, my workaround is setting the initialRating in onClick.
@amastaneh Here is the code: ``` const [selectedRating, setSelectedRating] = useState(); const onRatingSelected = selectedValue => { setSelectedRating(selectedValue); }; ```