web/source/src/app/footer/footer.component.ts
terralilly85 c4e0cfc5ce feature/web2 (#1)
Co-authored-by: Tara Wilson <tara@taraformed.com>
Reviewed-on: #1
2025-02-20 20:52:40 -05:00

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);
}