import * as React from 'react'; import Box from '@mui/material/Box'; import Rating from '@mui/material/Rating'; import Typography from '@mui/material/Typography'; export default function BasicRating() { const [value, setValue] = React.useState(2); return ( legend': { mt: 2 } }}> Controlled { setValue(newValue); }} /> Uncontrolled { console.log(newValue); }} defaultValue={2} /> Read only Disabled No rating given ); }