react-native-cash-counter
v0.4.3
Published
test
Downloads
3
Readme
react-native-cash-counter
A cash counter
Installation
npm install react-native-cash-counter
Usage
import { Counter, useCounter } from "react-native-cash-counter"
function MyWrapComponent(){
const [denominations, setDenominations, total] = useCounter()
return (
<Text>Total: ${total}</Text>
<Counter
denominations={denominations}
setDenominations={setDenominations}
/>
)
}
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
Made with create-react-native-library