Last active
September 16, 2018 07:00
-
-
Save clucasalcantara/abfb4f77a1067dab8e3795843030b0cc to your computer and use it in GitHub Desktop.
Named export exemplification
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const myFunctionToBeExported = () => { | |
alert('Hello Sir!') | |
} | |
export { | |
greet: myFunctionToBeExported, | |
myFunctionToBeExported, | |
} | |
// Importing | |
import { greet, myFunctionToBeExported } from './module' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment