2021-12-29 06:28:51 +00:00
|
|
|
import { Component } from '@angular/core';
|
2022-01-07 12:40:43 +00:00
|
|
|
import { AppMainComponent } from './app.main.component';
|
2021-12-09 14:24:42 +00:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-footer',
|
|
|
|
templateUrl: './app.footer.component.html'
|
|
|
|
})
|
|
|
|
export class AppFooterComponent{
|
2022-01-07 12:40:43 +00:00
|
|
|
constructor(public appMain: AppMainComponent) {}
|
2021-12-09 14:24:42 +00:00
|
|
|
}
|