tweak-tools
Version:
Tweak your React projects until awesomeness
31 lines (20 loc) • 752 B
Markdown
# tweak-tools
Easy tweaking for your React projects to customize until greatness 🦄 🚀
[](https://www.npmjs.com/package/tweak-tools) [](https://bundlephobia.com/result?p=tweak-tools)
## Installation
```bash
npm i tweak-tools
```
### Quick start
Simply call the `useTweaks` hook from anywhere in your app:
```jsx
import { useTweaks } from 'tweak-tools'
function MyComponent() {
const { name, count } = useTweaks({ name: 'World', count: 0 })
return (
<div>
Hey {name}, hello! {count}
</div>
)
}
```