UNPKG

@raulpesilva/re-state

Version:

easy way to create a shared state to the entire application

6 lines 146 B
import { store } from './store'; export function createReStateDispatch(key) { return function (value) { return store.set(key, value); }; }