UNPKG

286 BJavaScriptView Raw
1import React from 'react'
2import { connect } from 'react-redux'
3
4export default function createReduxConnector(WrappedComponent, mapStateToProps, mapDispatchToProps, mergeProps, options) {
5 return connect(mapStateToProps, mapDispatchToProps, mergeProps, options)(WrappedComponent)
6}
\No newline at end of file