Cleaned code with new components
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import {Component, input} from '@angular/core';
|
||||
import {IonicModule} from "@ionic/angular";
|
||||
import {GetUserDetailsDto, GetUserDto} from "../../services/api";
|
||||
|
||||
@Component({
|
||||
selector: 'app-generic-user-info',
|
||||
templateUrl: './generic-user-info.component.html',
|
||||
styleUrls: ['./generic-user-info.component.scss'],
|
||||
imports: [
|
||||
IonicModule
|
||||
]
|
||||
})
|
||||
export class GenericUserInfoComponent {
|
||||
userInfo = input.required<GetUserDetailsDto | GetUserDto>()
|
||||
}
|
||||
Reference in New Issue
Block a user