Last active
August 29, 2015 14:10
-
-
Save wolframkriesing/b7de988d9f16aae25831 to your computer and use it in GitHub Desktop.
This file contains 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
// inside app.js | |
export class App {} | |
// inside domUtil.js | |
import jQuery from 'jquery' // comes from the node_modules directory | |
export var domUtil = {} | |
// inside another file | |
import {App} from './app' | |
import {domUtil as domStuff} from './domUtil' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment