별점 보이게 하기
2023. 2. 5. 14:13ㆍTeamProjectHappy/front
// 별점보기 평균 읽어오기
function ReadOnly(grade: any) {
console.log(grade)
const [value] = React.useState<number>(parseInt(grade));
return(
<Rating name="read-only" value={grade} readOnly />
)
}
<Rating name="read-only" value={item.grade} readOnly />
'TeamProjectHappy > front' 카테고리의 다른 글
useNavigate (0) | 2023.02.14 |
---|---|
검색창 EnterKey 기능 구현 (0) | 2023.02.13 |
글자 수를 줄여주는 말줄임표 (0) | 2023.02.03 |
axios post () (0) | 2023.02.03 |
별점 읽기만 하기 (0) | 2023.01.25 |