cavallium-website/src/app/gui/footer/footer.component.ts

16 lines
270 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-footer",
templateUrl: "./footer.component.html",
styleUrls: ["./footer.component.scss"]
2019-04-12 00:16:56 +02:00
})
export class FooterComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}