DigitMagazine

Example 1 - Modification of the template

Dec 17th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. import { Component } from '@angular/core';
  2.  
  3. @Component({selector: 'digit',
  4. styles : [`
  5. .parent {
  6. background : #aaa;
  7. color : #000;
  8. padding: 10px;
  9. }
  10. `],
  11. template: `
  12. <div class="parent">
  13. <h1>Parent Component</h1>
  14. </div>
  15. `,
  16. })
  17.  
  18. export class AppComponent {}
Add Comment
Please, Sign In to add comment