mxstbr / login-flow

:key: A login/register flow built with React&Redux
https://loginflow.mxstbr.com
MIT License
1.6k stars 215 forks source link

Is it possible to have two "export default" in the same class? #27

Open h0ttz opened 7 years ago

h0ttz commented 7 years ago

There are two "exports default" in the file "login-flow/js/components/App.react.js"

"export default App;" line 26

"export default connect(select)(App);" line 38

Is it correct ?

mxstbr commented 7 years ago

No, that doesn't work. It should be export App on line 26

komkanit commented 7 years ago

Can I submit PR on this issue?