13 lines
317 B
TypeScript
13 lines
317 B
TypeScript
import {Component, inject} from '@angular/core';
|
|
import {MobileService} from '../mobile.service';
|
|
|
|
@Component({
|
|
selector: 'app-footer',
|
|
imports: [],
|
|
templateUrl: './footer.component.html',
|
|
styleUrl: './footer.component.scss'
|
|
})
|
|
export class FooterComponent {
|
|
public mobileService = inject(MobileService);
|
|
}
|