Skip to content

Instantly share code, notes, and snippets.

@thheller
Created February 15, 2018 15:36
Show Gist options
  • Save thheller/66c534e44d6f7caf79e86d66e8e4729f to your computer and use it in GitHub Desktop.
Save thheller/66c534e44d6f7caf79e86d66e8e4729f to your computer and use it in GitHub Desktop.
ES6 import problem
export let foo = "foo";
export let bar = "bar";
export default "default";
import x, { foo } from "./a"
// how do you gain access bar?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment