footer-bar.component.ts
286 Bytes
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'footer-bar',
templateUrl: './footer-bar.component.html',
styleUrls: ['./footer-bar.component.css']
})
export class FooterBarComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}