2016-09-13 14:39:39 -07:00
|
|
|
// #docregion
|
2016-09-19 19:57:59 -07:00
|
|
|
import { Component } from '@angular/core';
|
2016-09-13 14:39:39 -07:00
|
|
|
@Component({
|
|
|
|
template: `
|
|
|
|
<h2 highlight="skyblue">About</h2>
|
|
|
|
<twain-quote></twain-quote>
|
2016-09-19 19:57:59 -07:00
|
|
|
<p>All about this sample</p>`
|
2016-09-13 14:39:39 -07:00
|
|
|
})
|
|
|
|
export class AboutComponent { }
|