Skip to content

Instantly share code, notes, and snippets.

@kamleshchandnani
Created December 2, 2017 14:52
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 kamleshchandnani/c2192f79b8209510037a6b6452b147f4 to your computer and use it in GitHub Desktop.
Save kamleshchandnani/c2192f79b8209510037a6b6452b147f4 to your computer and use it in GitHub Desktop.
// File log.js
const log = () => {
console.log('Example of ES module system');
}
export default log
// File index.js
import log from "./log"
log();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment