1.0.2 • Published 9 years ago

redux-devtools-deku-slider-monitor v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
9 years ago

Redux DevTools Deku Slider Monitor

A time travel monitor for Redux using Redux Devtools ported to Deku. Based on the excellent library Redux Slider Monitor by Calesce.

Features

  • Lets you go back in time step by step

Installation

Please se installation instructions for Redux Devtools first then continue here.

npm install --save-dev redux-devtools-deku-slider-monitor

To install, import devTools into your root React component:

// Deku components for Redux DevTools
import {DevTools, DebugPanel, SliderMonitor} from 'redux-devtools-deku-slider-monitor';

Include the DevTools in your page. You may pass either SliderMonitor (the default one) or any of the custom monitors described below. For convenience, you can use DebugPanel to dock DevTools to some part of the screen, but you can put it also somewhere else in the component tree.

function render() {
  return (
    <div>
      <YourAppContainerRouterOrRootComponent />
      <DebugPanel left right bottom>
        <DevTools store={store} monitor={SliderMonitor} />
      </DebugPanel>
    </div>
  );
}

License

MIT