Redux Connect for Web Components
Redux Connect HOC for Web Components. It's also works for LitElement.
Usage
The function that is exported from the package gets store as an argument and returns connect HoC, which you can use just like the standard Redux connect (e.g. react-redux). Simple usage looks like this:
;... mapStateToProps mapDispatchToPropsComponent
But it is more concise to make connect with store and use it everywhere in your project:
// store.js;; const reducer = ; const store = ; ; const connect = ;
// Component.js; ... mapStateToProps mapDispatchToPropsComponent