10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
// #docregion
|
|
import { Component } from '@angular/core';
|
|
@Component({
|
|
template: `
|
|
<h2 highlight="skyblue">About</h2>
|
|
<twain-quote></twain-quote>
|
|
<p>All about this sample</p>`
|
|
})
|
|
export class AboutComponent { }
|