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

16 lines
270 B
TypeScript
Raw Normal View History

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