Project

General

Profile

1 57592 stefania.m
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
}