aspnetcore/samples/misc/ES2015Transpilation/wwwroot/js/greeting.js

6 lines
105 B
JavaScript

export default class Greeting {
getMessage() {
return 'Hello from the ES2015 class';
}
}