libregaming-design-system/src/js/greeting.js

7 lines
177 B
JavaScript

export default class Greeting {
static SOURCECODE = "Hello. The source code lives via git. Find the repository here:";
printToConsole(message) {
console.log(message);
}
}