src/app/components/footer-bar/footer-bar.component.ts
Generates the footer used for all pages.
| selector | app-footer-bar |
| styleUrls | footer-bar.component.css |
| templateUrl | footer-bar.component.html |
import { Component } from '@angular/core';
/**
* Generates the footer used for all pages.
*/
@Component({
selector: 'app-footer-bar',
templateUrl: './footer-bar.component.html',
styleUrls: ['./footer-bar.component.css']
})
export class FooterBarComponent {
}