accidents-backend / Accident.Web /src /app /app.component.ts
ChristopherJKoen's picture
Deploy backend from GitLab 9eda6d69
bed1116 verified
Raw
History Blame Contribute Delete
308 Bytes
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
@Component({
selector: 'app-root',
standalone: true,
imports: [RouterOutlet],
templateUrl: './app.component.html',
styleUrl: './app.component.css'
})
export class AppComponent {
title = 'Accident.Web';
}