Plugin to monitor states from zustand
Plugin to monitor states from zustand.
   
``bash`
npm i -D reactotron-plugin-zustand
Go to file "Reactotron.config.ts" or your config reactotron from project, is similar to this file:
`ts
import reactotronZustand from 'reactotron-plugin-zustand';
Reactotron.configure({ name: 'Project name' })
.use(
//add this line 🙌
reactotronZustand({ stores: [{ name: 'auth', store: useAuth }] })
)
.connect();
`
Install Reactotron Client and add your store observer, using the example "auth" or all states using: "*"`.

- Enable snapshot functions
- Code improvements