blob: 5d35e7c5fb775c0e2d61f22695ceb68c6e0b89e0 (
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
|
import React, { Component } from 'react'
// import { Link } from 'react-router-dom'
// import { bindActionCreators } from 'redux'
import { connect } from 'react-redux'
import actions from 'app/actions'
// import * as uploadActions from './upload.actions'
class Checklist extends Component {
componentDidMount() {
}
render() {
const { } = this.props
return (
<div className="checklist">
</div>
)
}
}
const mapStateToProps = state => ({
})
const mapDispatchToProps = dispatch => ({
// uploadActions: bindActionCreators({ ...uploadActions }, dispatch),
})
export default connect(mapStateToProps, mapDispatchToProps)(Checklist)
|