Skip to content

Instantly share code, notes, and snippets.

@maxmarinich
Last active July 5, 2018 14:07
Show Gist options
  • Save maxmarinich/66541c171dca915f0975729f7f87f004 to your computer and use it in GitHub Desktop.
Save maxmarinich/66541c171dca915f0975729f7f87f004 to your computer and use it in GitHub Desktop.
import React from 'react'
import { connect } from 'react-redux'
export default (Component) => {
class WithConfig extends React.Component {
render() {
return <Component { ...this.props } />
}
}
const mapStateToProps = (state) => ({ state })
return connect(mapStateToProps)(WithConfig)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment