.drone.yml aktualisiert

This commit is contained in:
2026-03-06 12:19:34 +00:00
committed by Dennis Hundertmark
parent e64e07793b
commit e9c18f4c0c
20 changed files with 9257 additions and 263 deletions
+12
View File
@@ -0,0 +1,12 @@
import { Component, signal } from '@angular/core';
import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
imports: [RouterOutlet],
templateUrl: './app.html',
styleUrl: './app.css'
})
export class App {
protected readonly title = signal('ngrx-playground');
}