mvp-ticket/frontend/src/app/app.component.ts

15 lines
438 B
TypeScript
Raw Normal View History

2024-07-18 18:29:51 +02:00
import { CommonModule } from '@angular/common';
import { ChangeDetectionStrategy, Component } from '@angular/core';
2024-06-06 12:56:59 +02:00
import { RouterOutlet } from '@angular/router';
2024-05-21 21:21:33 +02:00
2024-03-14 19:58:24 +01:00
@Component({
selector: 'app-root',
standalone: true,
2024-05-30 14:34:18 +02:00
providers: [],
2024-07-18 18:29:51 +02:00
imports: [RouterOutlet, CommonModule],
2024-03-14 19:58:24 +01:00
templateUrl: './app.component.html',
2024-03-14 20:32:51 +01:00
styleUrl: './app.component.scss',
2024-07-18 18:29:51 +02:00
changeDetection: ChangeDetectionStrategy.OnPush,
2024-03-14 19:58:24 +01:00
})
2024-07-18 18:29:51 +02:00
export class AppComponent {}