source: trip-planner-front/src/app/location/location.component.ts@ 6c1585f

Last change on this file since 6c1585f was 6c1585f, checked in by Ema <ema_spirova@…>, 3 years ago

edit planner form with angular

  • Property mode set to 100644
File size: 733 bytes
Line 
1import { Component, OnInit } from '@angular/core';
2import { Category } from '../_models/category';
3import { City } from '../_models/city';
4import { Companion } from '../_models/companion';
5import { Country } from '../_models/country';
6import { CategoryService } from '../_services/cateogry.service';
7import { CityService } from '../_services/city.service';
8import { CompanionService } from '../_services/companion.service';
9import { CountryService } from '../_services/country.service';
10
11@Component({
12 selector: 'app-location',
13 templateUrl: './location.component.html',
14 styleUrls: ['./location.component.css']
15})
16export class LocationComponent implements OnInit {
17
18 constructor() {
19
20 }
21
22 ngOnInit(): void {
23
24 }
25}
Note: See TracBrowser for help on using the repository browser.