import React from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import Box from '@mui/material/Box'; import Rating from '@mui/material/Rating'; export default function Basic() { const [value, setValue] = React.useState(2); return ( <> Basic legend': { mt: 2 }, }} > Controlled { setValue(newValue); }} /> Read only Disabled No rating given ); }