Skip to content

Instantly share code, notes, and snippets.

@gyver98
Last active March 17, 2017 12:21
Show Gist options
  • Save gyver98/7fa2b19d0bf023200a196ff1ec26f5d5 to your computer and use it in GitHub Desktop.
Save gyver98/7fa2b19d0bf023200a196ff1ec26f5d5 to your computer and use it in GitHub Desktop.
import TeslaCar from '../components/TeslaCar/TeslaCar';
import { connect } from 'react-redux';
const mapStateToProps = (state) => {
return {
wheelsize: state.config.wheels
}
}
const TeslaCarContainer = connect(mapStateToProps, null)(TeslaCar)
export default TeslaCarContainer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment