Skip to content

Instantly share code, notes, and snippets.

@Bizunow
Created August 22, 2017 13:50
Show Gist options
  • Save Bizunow/e18773e7f1a50635b0236aac6f040792 to your computer and use it in GitHub Desktop.
Save Bizunow/e18773e7f1a50635b0236aac6f040792 to your computer and use it in GitHub Desktop.
[ES6 module example] #js
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