Newer
Older
GestionHoteleria / src / app / components / pages / contact / contact.component.ts
James Cuadrado on 23 May 2021 339 bytes init
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-contact',
  templateUrl: './contact.component.html',
  styleUrls: ['./contact.component.sass']
})
export class ContactComponent implements OnInit {

  latitude = 51.678418;
  longitude = 7.809007;
  constructor() { }

  ngOnInit() {
  }

}