Skip to content
/ dakpan Public

🏠 A tiny React state management library using hooks.

License

Notifications You must be signed in to change notification settings

houfio/dakpan

Repository files navigation

Logo npm minzipped size license

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.