mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-07-23 04:36:52 +00:00
ability to publish apps
This commit is contained in:
14
src/components/Apps/AppRating.tsx
Normal file
14
src/components/Apps/AppRating.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
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>
|
||||
)
|
||||
}
|
Reference in New Issue
Block a user