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