import { Component } from '@angular/core'; @Component({ selector: 'app-auth', standalone: true, imports: [], templateUrl: './auth.component.html', styleUrl: './auth.component.scss' }) export class AuthComponent { }