Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @Component({
  2. selector: 'my-app',
  3. template: `
  4. <div>
  5. <h2>Hello {{name}}</h2>
  6. <my-custom-input [label]="'Name'">
  7. <input type="text">
  8. </my-custom-input>
  9. </div>
  10. `,
  11. })
  12. export class App {
  13. name:string;
  14. constructor() {
  15. this.name = `Angular! v${VERSION.full}`
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement