Project

General

Profile

1
import { Component, DoCheck, OnInit, ViewEncapsulation } from '@angular/core';
2

    
3
@Component({
4
  selector: 'app-footer',
5
  templateUrl: './footer.component.html',
6
  // styleUrls: ['./footer.component.css'],
7
  encapsulation: ViewEncapsulation.None
8
})
9

    
10
export class FooterComponent {
11
}
(2-2/2)