Skip to content

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.