7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
import Rating from '@mui/material/Rating';
|
||
|
|
|
||
|
|
export default function BasicRating() {
|
||
|
|
return <Rating name="rating-test" defaultValue={1} />;
|
||
|
|
}
|