Created
August 22, 2017 13:50
-
-
Save Bizunow/e18773e7f1a50635b0236aac6f040792 to your computer and use it in GitHub Desktop.
[ES6 module example] #js
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 const CONST_EXAMPLE = 0; | |
class ClassName { | |
static method() { | |
return 'Hello'; | |
} | |
} | |
export default ClassName; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment