homefront/src/app/weather/weather.component.ts
2018-11-14 12:07:55 -05:00

16 lines
318 B
TypeScript

import { Component, OnInit } from '@angular/core';
import {WeatherService} from './weather.service';
@Component({
selector: 'app-weather',
templateUrl: './weather.component.html'
})
export class WeatherComponent implements OnInit {
constructor(public weatherService: WeatherService) { }
ngOnInit() {
}
}