2016-06-21 02:34:14 -04:00
|
|
|
// #docregion
|
|
|
|
import { Component } from '@angular/core';
|
|
|
|
|
|
|
|
@Component({
|
2016-06-30 10:21:55 -04:00
|
|
|
selector: 'my-app',
|
2016-06-21 02:34:14 -04:00
|
|
|
template: `
|
|
|
|
<h1>Security</h1>
|
|
|
|
<inner-html-binding></inner-html-binding>
|
|
|
|
<bypass-security></bypass-security>
|
2016-08-09 12:38:25 -04:00
|
|
|
`
|
2016-06-21 02:34:14 -04:00
|
|
|
})
|
|
|
|
export class AppComponent {
|
|
|
|
}
|