In this case, both exports export the same thing. Both
import Homeview
and
import { Homeview }
You will get the same module (HomeView component).
I see that you are using Redux. If you were doing something like
export const HomeView ... export default connect(mapStateToProps)(HomeView);
This can be useful in that you can sometimes use a component that is not connected to Redux, or you may need it for testing.
source share