36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
|
|
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<number | null>(2);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Box sx={{ '& > legend': { mt: 2 } }}>
|
||
|
|
<Typography component="legend">Controlled</Typography>
|
||
|
|
<Rating
|
||
|
|
name="simple-controlled"
|
||
|
|
value={value}
|
||
|
|
onChange={(event, newValue) => {
|
||
|
|
setValue(newValue);
|
||
|
|
}}
|
||
|
|
/>
|
||
|
|
<Typography component="legend">Uncontrolled</Typography>
|
||
|
|
<Rating
|
||
|
|
name="simple-uncontrolled"
|
||
|
|
onChange={(event, newValue) => {
|
||
|
|
console.log(newValue);
|
||
|
|
}}
|
||
|
|
defaultValue={2}
|
||
|
|
/>
|
||
|
|
<Typography component="legend">Read only</Typography>
|
||
|
|
<Rating name="read-only" value={value} readOnly />
|
||
|
|
<Typography component="legend">Disabled</Typography>
|
||
|
|
<Rating name="disabled" value={value} disabled />
|
||
|
|
<Typography component="legend">No rating given</Typography>
|
||
|
|
<Rating name="no-value" value={null} />
|
||
|
|
</Box>
|
||
|
|
);
|
||
|
|
}
|