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

15 lines
327 B
TypeScript
Raw Normal View History

2024-06-06 12:56:59 +02:00
import { Component } from '@angular/core';
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-03-14 19:58:24 +01:00
imports: [RouterOutlet],
templateUrl: './app.component.html',
2024-03-14 20:32:51 +01:00
styleUrl: './app.component.scss',
2024-03-14 19:58:24 +01:00
})
2024-06-06 12:56:59 +02:00
export class AppComponent {
public constructor() {}
2024-05-21 21:21:33 +02:00
}