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