Skip to content

Latest commit

History

12 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

useStore

Get access to a global store with just hooks, no Redux or message passing.

How to install

npm i @mvps@usestore

How to use

importuseStorefrom'@mvps/usestore'constApp=props=>{// you can set the initial state in the first call:const[count,setCount]=useStore('count',0)return<h1>{count}</h1>}// then, in any other component, just retrieve the value from the store:importuseStorefrom'@mvps/usestore'constCounter=props=>{const[count,setCount]=useStore('count')return<h1>{count}</h1>}

Have fun!

About

Get access to a global store with just hooks, no Redux or message passing.

Resources

Stars

3 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages