"Fossies" - the Fresh Open Source Software Archive
Member "angular-13.3.9/aio/content/examples/testing/src/app/about/about.component.ts" (18 May 2022, 219 Bytes) of package /linux/www/angular-13.3.9.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TypeScript source code syntax highlighting (style: standard) with prefixed line numbers and code folding option.
Alternatively you can here view or download the uninterpreted source code file.
1 // #docregion 2 import{ Component } from '@angular/core'; 3 @Component({ 4 template:` 5 <h2 highlight="skyblue">About</h2> 6 <h3>Quote of the day:</h3> 7 <twain-quote></twain-quote> 8 ` 9 }) 10 export class AboutComponent { }