import { Component } from '@angular/core'; import { UserService } from 'src/app/services/user.service'; @Component({ selector: 'app-allowance', templateUrl: 'allowance.page.html', styleUrls: ['allowance.page.scss'], standalone: false, }) export class AllowancePage { constructor(private userService: UserService) {} }