Skip to content

Instantly share code, notes, and snippets.

@clucasalcantara
Last active September 16, 2018 07:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clucasalcantara/abfb4f77a1067dab8e3795843030b0cc to your computer and use it in GitHub Desktop.
Save clucasalcantara/abfb4f77a1067dab8e3795843030b0cc to your computer and use it in GitHub Desktop.
Named export exemplification
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