Skip to content

Instantly share code, notes, and snippets.

@joefiorini
Last active October 26, 2015 20:29
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 joefiorini/1055e5b9e8897809b0a1 to your computer and use it in GitHub Desktop.
Save joefiorini/1055e5b9e8897809b0a1 to your computer and use it in GitHub Desktop.
Named Exports
export function a() {
}
export function b() {
}
export function c() {
}
import {a, b, c} from 'Package'
window.a = a;
window.b = b;
window.c = c;
export * from './a';
export * from './b';
export * from './c';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment