blob: 0ad1bab1bd38171dcf33b47a28375af3cfdf3788 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import React, { Component } from 'react'
// import { Link } from 'react-router-dom'
import { connect } from 'react-redux'
import actions from 'app/actions'
class PlayerContainer extends Component {
componentDidMount() {
}
render() {
const { } = this.props
return (
<div className="player">
Document container
</div>
)
}
}
const mapStateToProps = state => ({
})
export default connect(mapStateToProps)(PlayerContainer)
/*
- section name, number
- next link
- player
*/
|