import { Component, OnInit } from '@angular/core'; @Component({ standalone: false, selector: 'app-auth', templateUrl: './auth.component.html', }) export class AuthComponent implements OnInit { constructor() { } ngOnInit(): void { } }