Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshwrn/react-dial
https://github.com/joshwrn/react-dial
dial knob react
Last synced: about 4 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/joshwrn/react-dial
- Owner: joshwrn
- License: mit
- Created: 2022-12-18T01:41:59.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-06T21:30:46.000Z (8 months ago)
- Last Synced: 2024-04-18T06:01:44.435Z (7 months ago)
- Topics: dial, knob, react
- Language: TypeScript
- Homepage: https://joshwrn.github.io/react-dial/
- Size: 369 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
React Dial Component
# Usage
```tsx
const App = () => {
const [degrees, setDegrees] = useState(0)
return (
{Math.round(degrees)}
Degrees
)
}
```