initial commit

This commit is contained in:
eho
2026-07-31 23:08:17 +02:00
commit 209df1ae5a
22 changed files with 8670 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { Component, signal } from '@angular/core';
@Component({
selector: 'app-root',
imports: [],
templateUrl: './app.html',
styleUrl: './app.css'
})
export class App {
protected readonly title = signal('ng-signals-template');
}