-
-
Save thheller/66c534e44d6f7caf79e86d66e8e4729f to your computer and use it in GitHub Desktop.
ES6 import problem
This file contains hidden or 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
export let foo = "foo"; | |
export let bar = "bar"; | |
export default "default"; |
This file contains hidden or 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
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