tweak-tools
v0.1.1
Published
Tweak your React projects until awesomeness
Maintainers
Readme
tweak-tools
Easy tweaking for your React projects to customize until greatness 🦄 🚀
Installation
npm i tweak-toolsQuick start
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>
)
}