footer.component.ts 269 B

12345678910111213141516
  1. import { Component, OnInit } from '@angular/core';
  2. @Component({
  3. selector: 'app-footer',
  4. templateUrl: './footer.component.html',
  5. styleUrls: ['./footer.component.css']
  6. })
  7. export class FooterComponent implements OnInit {
  8. constructor() { }
  9. ngOnInit() {
  10. }
  11. }