11 lines
290 B
TypeScript
11 lines
290 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
import { LayoutService } from "./service/app.layout.service";
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-footer',
|
||
|
|
templateUrl: './app.footer.component.html'
|
||
|
|
})
|
||
|
|
export class AppFooterComponent {
|
||
|
|
constructor(public layoutService: LayoutService) { }
|
||
|
|
}
|