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