You can not 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
551 B
22 lines
551 B
import { Component, OnInit } from '@angular/core';
|
|
import { Observable } from 'rxjs';
|
|
import { User } from 'src/app/models/user';
|
|
import { UserService } from 'src/app/services/user.service';
|
|
|
|
@Component({
|
|
selector: 'app-user-show',
|
|
templateUrl: './user-show.component.html',
|
|
styleUrls: ['./user-show.component.css']
|
|
})
|
|
export class UserShowComponent implements OnInit {
|
|
|
|
userList : Observable<User[]>;
|
|
|
|
constructor(private _userService : UserService) {
|
|
this.userList = this._userService.showAllUsers();
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|