Update transpilation example to Babel 6 and remove system.js

This commit is contained in:
SteveSandersonMS
2016-03-23 13:36:47 +00:00
parent 908bc6a577
commit 980054b321
6 changed files with 9 additions and 14 deletions

View File

@@ -1,3 +1,7 @@
import Greeting from './greeting.js';
class Greeting {
getMessage() {
return 'Hello from the ES2015 class';
}
}
console.log(new Greeting().getMessage());