Guest User

Untitled

a guest
Oct 21st, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. # Atom snippets
  2. '.source.ts':
  3. 'Angular Component':
  4. 'prefix': 'ngc'
  5. 'body': """
  6. import { Component, OnInit } from '@angular/core';
  7.  
  8. @Component({
  9. selector: 'as-$0',
  10. templateUrl: '$0.component.html'
  11. })
  12.  
  13. export class $1Component implements OnInit {
  14. constructor() { }
  15.  
  16. ngOnInit() { }
  17. }
  18.  
  19. """
Add Comment
Please, Sign In to add comment