mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-05-06 01:37:52 +00:00
15 lines
286 B
TypeScript
15 lines
286 B
TypeScript
import { Rating } from '@mui/material'
|
|
import React, { useState } from 'react'
|
|
|
|
export const AppRating = () => {
|
|
const [value, setValue] = useState(0)
|
|
return (
|
|
<div>
|
|
<Rating value={value}
|
|
onChange={(event, newValue) => {
|
|
|
|
}} precision={0.1} />
|
|
</div>
|
|
)
|
|
}
|