Skip to content

Instantly share code, notes, and snippets.

@codeaholicguy
Created September 3, 2016 16:53
Embed
What would you like to do?
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