Guest User

Untitled

a guest
Dec 11th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import { Component } from '@angular/core';
  2.  
  3. @Component({
  4. selector: 'my-component',
  5. template: `<h1>{{title}}</h1>`
  6. })
  7. export class MyComponent {
  8.  
  9. title = `Hello world`;
  10.  
  11. }
Add Comment
Please, Sign In to add comment