Skip to content

Instantly share code, notes, and snippets.

@jpetitcolas
Created February 27, 2015 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpetitcolas/eb0886750b7699ee699c to your computer and use it in GitHub Desktop.
Save jpetitcolas/eb0886750b7699ee699c to your computer and use it in GitHub Desktop.
Issue with Babel
import View from "./folder/View";
class Application {
constructor() {
this.view = new View("I'm a view!");
}
sayHello() {
console.log("Hello");
}
}
class View {
constructor(test) {
this.test = test;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment