1 import { Component, OnInit } from '@angular/core';
2 import { Hero } from '../hero';
3 import { HeroService } from '../hero.service';
6 selector: 'app-dashboard',
7 templateUrl: './dashboard.component.html',
8 styleUrls: [ './dashboard.component.css' ]
10 export class DashboardComponent implements OnInit {
13 constructor(private heroService: HeroService) { }
20 this.heroService.getHeroes()
21 .subscribe(heroes => this.heroes = heroes.slice(1, 5));