funky-framadate-front/src/app/core/components/footer/footer.component.ts

13 lines
266 B
TypeScript
Raw Normal View History

2020-04-22 12:56:18 +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(): void {}
}