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