ability to publish apps

This commit is contained in:
2024-10-19 04:54:59 +03:00
parent 020366477a
commit 9685a40e6a
16 changed files with 1102 additions and 255 deletions

View 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>
)
}