16 lines
563 B
TypeScript
16 lines
563 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
import { Title } from '@angular/platform-browser';
|
||
|
import { RouterOutlet } from '@angular/router';
|
||
|
import { HeaderComponent } from '@app/header/header.component';
|
||
|
import { NotificationBoxComponent } from '@app/notification-box/notification-box.component';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-root',
|
||
|
imports: [RouterOutlet, HeaderComponent, NotificationBoxComponent],
|
||
|
templateUrl: './app.component.html',
|
||
|
styleUrl: './app.component.scss'
|
||
|
})
|
||
|
export class AppComponent {
|
||
|
constructor(public title: Title) { }
|
||
|
}
|