2024-09-17 08:14:28 +00:00
|
|
|
import { Component } from '@angular/core';
|
2024-09-17 09:06:10 +00:00
|
|
|
import { RouterLink } from '@angular/router';
|
|
|
|
|
|
2024-09-17 08:14:28 +00:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'app-auth',
|
|
|
|
|
standalone: true,
|
2024-09-17 09:06:10 +00:00
|
|
|
imports: [RouterLink],
|
2024-09-17 08:14:28 +00:00
|
|
|
templateUrl: './auth.component.html',
|
|
|
|
|
styleUrl: './auth.component.scss'
|
|
|
|
|
})
|
|
|
|
|
export class AuthComponent {
|
|
|
|
|
|
|
|
|
|
}
|