-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix double export (named and default) in component files #4254
Fix double export (named and default) in component files #4254
Conversation
I've reverted changes of some components, because their tests failed when importing the default version which is a May be I could change that for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are some cases (e.g. ArrayField) where the named export and the default export weren't the same thing, because there is still a HOC. Please revert the changes for these - the named export is useful for tests.
Done! |
Thanks! |
Fixes #4253.