Skip to content

Instantly share code, notes, and snippets.

@neomatrixcode
Created November 1, 2020 01:45
Show Gist options
  • Save neomatrixcode/d3c82ef4e5f9d13ae0f9257528396a5f to your computer and use it in GitHub Desktop.
Save neomatrixcode/d3c82ef4e5f9d13ae0f9257528396a5f to your computer and use it in GitHub Desktop.
import { connect } from 'react-redux'
import verTareaPresentational from '../presentationals/verTareaPresentational'
const mapStateToProps = state => ({
tareas: state.tareas
})
export default connect(
mapStateToProps
)(verTareaPresentational)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment