web/source/src/app/committee/committee.component.ts
Tara Wilson acc339768e Adding mobile service
Adding mobile components
2025-02-19 21:07:32 -05:00

13 lines
329 B
TypeScript

import {Component, inject} from '@angular/core';
import {MobileService} from '../mobile.service';
@Component({
selector: 'app-committee',
imports: [],
templateUrl: './committee.component.html',
styleUrl: './committee.component.scss'
})
export class CommitteeComponent {
public mobileService = inject(MobileService);
}