15 lines
287 B
TypeScript
15 lines
287 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-footer-menu',
|
|
templateUrl: './footer-menu.component.html',
|
|
styleUrls: ['./footer-menu.component.scss'],
|
|
})
|
|
export class FooterMenuComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {}
|
|
|
|
}
|