Skip to content

Instantly share code, notes, and snippets.

@linkesch
Last active February 7, 2018 20:43
Show Gist options
  • Save linkesch/edf187f96f68413a0999aa271e6b9758 to your computer and use it in GitHub Desktop.
Save linkesch/edf187f96f68413a0999aa271e6b9758 to your computer and use it in GitHub Desktop.
ES6 class mixin
export default Superclass => class extends Superclass {
constructor(...args) {
super(...args);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment