728x90
반응형
material rating
-
MUI - RatingFront-end/Material UI 2024. 7. 11. 14:14
RatingRating 이란 material UI 에서 아이콘으로 평점을 나타내주거나 기능을 구현한 컴포넌트이다.Material UI의 Rating컴포넌트는 다양한 설정과 스타일링 옵션을사용하여 평점 설정 해주는 컴포넌트이다. import { Box, Rating, Typography } from "@mui/material";import { useState } from "react";function Mui() { const [value, setValue] = useState(2); // 기본 값으 2로 설정 return ( legend': { mt: 2 }, }} > Controlled { ..