Remove scaffolding sample files

This commit is contained in:
2018-07-09 19:50:01 +05:30
parent 2846adc5c8
commit 065f56b521
-11
View File
@@ -1,11 +0,0 @@
export class Greeter {
private greeting: string;
constructor(message: string) {
this.greeting = message;
}
public greet(): string {
return `Bonjour, ${this.greeting}!`;
}
}