-
-
Save jhnns/0dd2ecaba7771c2ad955b2f92de9e76d to your computer and use it in GitHub Desktop.
Bundle example
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 number = 42; | |
export function incr() { | |
number++; | |
} |
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 { number } from "./a"; | |
console.log(number); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm pretty sure you can only export a const. Let would make it too dynamic.