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