https://github.com/joshwrn/react-dial
https://github.com/joshwrn/react-dial
dial knob react
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/joshwrn/react-dial
- Owner: joshwrn
- License: mit
- Created: 2022-12-18T01:41:59.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-06T21:30:46.000Z (over 1 year ago)
- Last Synced: 2025-01-21T06:10:11.397Z (11 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
)
}
```