I have a react js app and i need to make 2 exports. The first is
export default reduxForm({
form: 'simple' // a unique identifier for this form
})(SimpleForm)
to handle form submission and the next is to bind some ui actions
export default connect(mapStateToProps, bindAction)(Inbox);
When i have the two exports, i get the error that i cant have 2 exports in one module. Can the problem be solved by combining the two exports?.