frontpage.component.ts
282 Bytes
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'moya-frontpage',
templateUrl: './frontpage.component.html',
styleUrls: ['./frontpage.component.css']
})
export class FrontpageComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}