I'm new to React Native, How to export default two components,
I have a class which use withNavigation and redux connect, and I have to export them as default to work properly.
import { withNavigation } from 'react-navigation';
import { connect } from 'react-redux';
.
.
.
export default connect(mapStateToProps, mapDispatchToProps)(ClassName);
export default withNavigation(ClassName)