blob: 92da6732a30ee06f4b0c1a9dfd3a0027ed27193a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { connect } from 'react-redux'
import AudioPlayerView from '../components/UI/AudioPlayerView.jsx'
const mapStateToProps = state => state.audioPlayer
const mapDispatchToProps = (dispatch, ownProps) => ({
})
const AudioPlayer = connect(
mapStateToProps,
mapDispatchToProps
)( AudioPlayerView )
export default AudioPlayer
|