Companion/src/app/app.component.ts

17 lines
564 B
TypeScript
Raw Normal View History

2025-02-02 20:20:06 +01:00
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';
2025-02-12 14:14:02 +01:00
2025-02-02 20:20:06 +01:00
@Component({
selector: 'app-root',
imports: [RouterOutlet, HeaderComponent, NotificationBoxComponent],
templateUrl: './app.component.html',
styleUrl: './app.component.scss'
})
export class AppComponent {
constructor(public title: Title) { }
}