2016-09-13 14:39:39 -07:00
|
|
|
// #docregion
|
2016-12-05 11:46:53 -08:00
|
|
|
import { Component } from '@angular/core';
|
2016-09-13 14:39:39 -07:00
|
|
|
|
|
|
|
@Component({
|
2016-12-05 11:46:53 -08:00
|
|
|
moduleId: module.id,
|
2016-09-13 14:39:39 -07:00
|
|
|
selector: 'app-banner',
|
2017-01-04 18:56:49 +00:00
|
|
|
templateUrl: './banner.component.html',
|
|
|
|
styleUrls: ['./banner.component.css']
|
2016-09-13 14:39:39 -07:00
|
|
|
})
|
|
|
|
export class BannerComponent {
|
|
|
|
title = 'Test Tour of Heroes';
|
|
|
|
}
|
|
|
|
|