dakpan
v2.3.2
Published
A tiny React state management library using hooks.
Downloads
233
Readme
A tiny React state management library using hooks.
const [StateProvider, useDakpan, withDakpan] = createDakpan({
hello: 'world'
})({
append: (value: string) => ({ hello }) => ({
hello: hello + value
})
});
Installation
npm install dakpan
or
yarn add dakpan
Documentation
You can find the documentation here.