cleaned code

This commit is contained in:
2026-03-28 15:46:13 +01:00
parent fdb4cf119b
commit cf1df4700e
51 changed files with 1659 additions and 723 deletions
+9 -7
View File
@@ -1,14 +1,16 @@
import { Component, OnInit } from '@angular/core';
import {Component, OnInit} from '@angular/core';
@Component({
selector: 'app-pipe',
templateUrl: './pipe.component.html',
styleUrls: ['./pipe.component.scss'],
selector: 'app-pipe',
templateUrl: './pipe.component.html',
styleUrls: ['./pipe.component.scss'],
})
export class PipeComponent implements OnInit {
export class PipeComponent implements OnInit {
constructor() { }
constructor() {
}
ngOnInit() {}
ngOnInit() {
}
}