16 lines
269 B
TypeScript
16 lines
269 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'of-footer',
|
|
templateUrl: './footer.component.html',
|
|
styleUrls: ['./footer.component.scss']
|
|
})
|
|
export class FooterComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {
|
|
}
|
|
|
|
}
|