UNPKG

@raulpesilva/re-state

Version:

easy way to create a shared state to the entire application

8 lines 249 B
import { store } from './store'; import { useReState } from './useReState'; export function createReState(key, initialValue) { store.setWithoutNotify(key, initialValue); return function useCreatedUseReState() { return useReState(key); }; }