// ** React Imports import { useState } from 'react' // ** MUI Imports import Box from '@mui/material/Box' import Rating from '@mui/material/Rating' import Typography from '@mui/material/Typography' const RatingsBasic = () => { // ** State const [value, setValue] = useState(2) return (
Controlled setValue(newValue)} /> Read only Disabled
No rating given
) } export default RatingsBasic