Export higher order components without 'export default'

Viewed 6150

I am using react-click-outside to hide dropdown menus if the user clicks outside the menu. Normally, I would export the component like so:

export default enhanceWithClickOutside(Dropdown);

However, in this case, I want to export the component

export { enhancedWithClickOutside(Dropdown) };

But that apparently does not work. Is there a way to export using {} and also apply the higher order component function?

1 Answers
Related