mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-22 20:31:32 +00:00
18 lines
282 B
TypeScript
18 lines
282 B
TypeScript
![]() |
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-iam',
|
||
|
templateUrl: './iam.component.html',
|
||
|
styleUrls: ['./iam.component.scss'],
|
||
|
})
|
||
|
export class IamComponent implements OnInit {
|
||
|
|
||
|
constructor() {
|
||
|
|
||
|
}
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
|
||
|
}
|