2022-11-29 18:25:52 +01:00
|
|
|
import { Component } from '@angular/core';
|
2023-06-23 15:32:59 +02:00
|
|
|
import { RouterOutlet } from '@angular/router';
|
2022-11-29 18:25:52 +01:00
|
|
|
|
|
|
|
|
@Component({
|
2023-06-23 15:32:59 +02:00
|
|
|
selector: 'app-root',
|
|
|
|
|
templateUrl: './app.component.html',
|
|
|
|
|
styleUrls: ['./app.component.scss'],
|
|
|
|
|
standalone: true,
|
|
|
|
|
imports: [RouterOutlet]
|
2022-11-29 18:25:52 +01:00
|
|
|
})
|
|
|
|
|
export class AppComponent {
|
2023-01-04 15:45:45 +01:00
|
|
|
title = 'DiunaBI';
|
2022-11-29 18:25:52 +01:00
|
|
|
}
|