13 lines
329 B
TypeScript
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);
|
|
}
|