initiatived21/d21

View on GitHub
client/app/PledgeView/containers/PledgeViewContainer.jsx

Summary

Maintainability
A
0 mins
Test Coverage
import { connect } from 'react-redux'

import PledgeView from '../components/PledgeView'

const mapStateToProps = () => {
}

const mapDispatchToProps = () => ({
  //pushIncluded
})

export default connect(
  mapStateToProps,
  mapDispatchToProps
)(PledgeView)