14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
|
import { Component } from '@angular/core';
|
||
|
import { ApiService } from './app.api.service';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-footer',
|
||
|
templateUrl: './app.footer.component.html'
|
||
|
})
|
||
|
export class AppFooterComponent {
|
||
|
constructor(
|
||
|
public apiService: ApiService,
|
||
|
) {}
|
||
|
|
||
|
}
|