mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
6 lines
105 B
JavaScript
6 lines
105 B
JavaScript
export default class Greeting {
|
|
getMessage() {
|
|
return 'Hello from the ES2015 class';
|
|
}
|
|
}
|