cavallium-website/src/app/pages/home/home.component.ts

16 lines
262 B
TypeScript
Raw Normal View History

2019-04-12 20:20:38 +02:00
import { Component, OnInit } from "@angular/core";
2019-04-12 00:16:56 +02:00
@Component({
2019-04-12 20:20:38 +02:00
selector: "app-home",
templateUrl: "./home.component.html",
styleUrls: ["./home.component.scss"]
2019-04-12 00:16:56 +02:00
})
export class HomeComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}