Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 493 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 493 Bytes

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