Standalone app - auto migrate

This commit is contained in:
2023-06-23 15:32:59 +02:00
parent 6fecc9bcd4
commit 314edeec40
15 changed files with 149 additions and 200 deletions

View File

@@ -1,9 +1,12 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: true,
imports: [RouterOutlet]
})
export class AppComponent {
title = 'DiunaBI';