Initial commit: Aeroflot Flights Web Angular 12 application

This commit is contained in:
2026-04-03 10:10:52 +03:00
commit 2342f2e66e
1311 changed files with 128350 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { Component, OnInit } from '@angular/core';
import { UserLocationService } from '@shared/services/user-location/user-location.service';
@Component({
selector: 'flights-root',
templateUrl: './app.component.html',
})
export class AppComponent implements OnInit {
constructor(private userLocation: UserLocationService) {}
ngOnInit() {
this.userLocation.locate();
}
}