Skip to content

concentjs/concent-plugin-redux-devtool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

how to use

  • step 1, install it
npm i concent-plugin-redux-devtool
  • setp 2, config it to concent startupOption's plugins
import { run } from 'concent';
import reduxDevToolPlugin from 'concent-plugin-redux-devtool';

// your store config
const storeConfig = {};

// your option
const startupOption = {
  plugins: [reduxDevToolPlugin]
};

run(storeConfig, startupOption);
  • run your concent app, check your chrome redux dev-tool

dev-tool-pic

note that committedState is the whole state that committed by some one of your component refs, sharedState is the state that will save to store, they are different!

About

link concent app to redux plugin of chrome

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published