Created
October 5, 2016 17:02
-
-
Save trezy/008e6ff0472eab59d78c6ca39748f9e5 to your computer and use it in GitHub Desktop.
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
// Private property, cannot from the importing file | |
let bar = 'baz' | |
export default class Foo { | |
constructor () { | |
console.log(bar) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment