Skip to content

Instantly share code, notes, and snippets.

@cevr
Created June 14, 2019 03:14
Show Gist options
  • Save cevr/b951a31ce6affadfa723daddcf954697 to your computer and use it in GitHub Desktop.
Save cevr/b951a31ce6affadfa723daddcf954697 to your computer and use it in GitHub Desktop.
const connect = (mapState, mapActions) => Component => {
const store = useStore(mapState);
const actions = useActions(mapActions);
return function Wrapped(props) {
return <Component {...props} {...store} {...actions} />;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment