14 lines
320 B
TypeScript
14 lines
320 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);
|
|
}
|