The following properties can be passed to the LogMonitor component:
- theme: Optional; default is 'nicinabox'; can be a string, referring to one of the Redux DevTools Themes (https://github.com/gaearon/redux-devtools-themes) or an object with the same format.
- select: Optional; default is state => state; a function that selects a part of the state for DevTools to show, for example, state => state.posts to only debug posts.
- preserveScrollTop: Optional; default is true; if set to true, this will save the current scroll position and restore it on refresh. It only works when used together with the persistState store enhancer (which means you need to be in a ?debug= session).
- expandActionRoot: Optional; default is true; if set to true ...