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