
Co-authored-by: Phan Huy Tran <p.tran@neusta.de> Reviewed-on: #4 Co-authored-by: ptran <huydw@proton.me> Co-committed-by: ptran <huydw@proton.me>
13 lines
230 B
TypeScript
13 lines
230 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-login',
|
|
imports: [],
|
|
templateUrl: './login.component.html',
|
|
standalone: true,
|
|
styleUrl: './login.component.css'
|
|
})
|
|
export class LoginComponent {
|
|
|
|
}
|