import React from 'react'; import Rating from '@material-ui/lab/Rating'; import Typography from '@material-ui/core/Typography'; import Box from '@material-ui/core/Box'; export default function SimpleRating() { const [value, setValue] = React.useState(2); return (
Controlled { setValue(newValue); }} /> Read only Disabled Pristine
); }