Skip to content

Instantly share code, notes, and snippets.

@charpeni
Created November 16, 2017 02:59
Show Gist options
  • Save charpeni/400b2873bc757b96f7600953597d361a to your computer and use it in GitHub Desktop.
Save charpeni/400b2873bc757b96f7600953597d361a to your computer and use it in GitHub Desktop.
class Component {
constructor(value) {
this.value = value;
}
@autobind
method() {
return this.value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment