README.md

March 21, 2021 ยท View on GitHub

The Clean-State debugging plugin

Install

npm i cs-redux-devtool

Usage

import bootstrap from 'clean-state'
import devtool from 'cs-redux-devtool'
import user from './user'

const modules = ={ user }

bootstrap.addPlugin(devtool)
export const {useModule, dispatch}  = bootstrap(modules);

Example