projects
/
examples
/
angular-tour-of-heroes
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
WIP: 6: Get Data from a Server k) Search by name
[examples/angular-tour-of-heroes]
/
heroes
/
heroes.component.ts
1
import { Component, OnInit } from '@angular/core';
2
3
@Component({
4
selector: 'app-heroes',
5
templateUrl: './heroes.component.html',
6
styleUrls: ['./heroes.component.css']
7
})
8
export class HeroesComponent implements OnInit {
9
10
constructor() { }
11
12
ngOnInit() {
13
}
14
15
}