@salt-ds/lab@1.0.0-alpha.86
Pre-release
Pre-release
·
7 commits
to main
since this release
Minor Changes
-
a16cbc5:
Ratinghas been added to allow users to provide feedback relating to your product or experience.Basic usage:
import { Rating } from "@salt-ds/lab"; function App() { const [value, setValue] = useState(0); return ( <Rating value={value} onValueChange={(event, newValue) => setValue(newValue)} /> ); }