Change components to standalone

This commit is contained in:
Peter Rossa
2023-09-26 14:24:25 +02:00
parent df6b89e89e
commit b32c5b165c
7 changed files with 64 additions and 20 deletions

View File

@@ -1,10 +1,10 @@
import { Component } from "@angular/core";
import { Component } from '@angular/core';
@Component({
selector: "app-root",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.css"],
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css'],
})
export class AppComponent {
title = "rossa-tech";
title = 'rossa-tech';
}