Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save neomatrixcode/a7d686e815be3164653bac0e30125952 to your computer and use it in GitHub Desktop.
Save neomatrixcode/a7d686e815be3164653bac0e30125952 to your computer and use it in GitHub Desktop.
import { connect } from 'react-redux'
import { agregarTarea } from '../actions'
import agregarTareaPresentational from '../presentationals/agregarTareaPresentational'
const mapDispatchToProps = dispatch => ({
fusion_agregarTarea: text => dispatch(agregarTarea(text))
})
export default connect(
null
,mapDispatchToProps
)(agregarTareaPresentational)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment