Skip to content

Instantly share code, notes, and snippets.

@codeaholicguy
Created September 3, 2016 16:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeaholicguy/122ca5a0f0c8de6a856d8f2c0986cc2a to your computer and use it in GitHub Desktop.
Save codeaholicguy/122ca5a0f0c8de6a856d8f2c0986cc2a to your computer and use it in GitHub Desktop.
import React, {Component, PropTypes} from 'react';
import {connect} from 'react-redux';
class TrackList extends Component {
...
}
function mapStateToProps(state) {
const tracks = state.track
return {tracks}
}
export default connect(mapStateToProps)(TrackList)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment