Skip to content

Instantly share code, notes, and snippets.

@danwbyrne
Created October 28, 2018 19:53
Show Gist options
  • Save danwbyrne/d79dd1baf528eb87658f455b92adc6c3 to your computer and use it in GitHub Desktop.
Save danwbyrne/d79dd1baf528eb87658f455b92adc6c3 to your computer and use it in GitHub Desktop.
export const bar = 'bang';
const bar = 'bar';
export const foo = bar;
import * as fizz from './foo';
export * from './bar';
export { fizz };
export const bar = 'bang';
const sc1 = 'bar';
const foo = sc1;
const fizz = { foo: foo };
export { fizz };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment