You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
513 B
TypeScript
22 lines
513 B
TypeScript
import { Component, OnInit, Input } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-employee-information',
|
|
templateUrl: './employee-information.component.html',
|
|
styleUrls: ['./employee-information.component.scss'],
|
|
})
|
|
export class EmployeeInformationComponent implements OnInit {
|
|
|
|
public userImage: any = '../assets/imgs/profile.png';
|
|
@Input() name: string;
|
|
@Input() title: string;
|
|
@Input() employeeImage: string;
|
|
@Input() employeePhoneNumber: string;
|
|
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit() {}
|
|
|
|
}
|