What is the best way to re-export a default export from another file?
I'd like to do something like this:
export Button from './Button/Button';
Apparently this is not valid EcmaScript syntax (however it used to work in older Babel versions).
As a result I want to import {Button} from 'components';
Is there a better way, maybe a one-liner? ES6 syntax would be preferred.
Thanks!