Easy tweaking for your React projects to customize until greatness π¦ π
npm i tweak-tools
Simply call the useTweaks
hook from anywhere in your app:
import { useTweaks } from 'tweak-tools'
function MyComponent() {
const { name, count } = useTweaks({ name: 'World', count: 0 })
return (
<div>
Hey {name}, hello! {count}
</div>
)
}