Skip to content

Instantly share code, notes, and snippets.

@simpulton
Created March 16, 2016 18:58
Show Gist options
  • Save simpulton/8d4c95b56dd59a54d1a6 to your computer and use it in GitHub Desktop.
Save simpulton/8d4c95b56dd59a54d1a6 to your computer and use it in GitHub Desktop.
An Angular 2 component live template for Webstorm
import {Component, ViewEncapsulation} from 'angular2/core';
@Component({
selector: '$SELECTOR$',
template: require('./$SELECTOR$.html'),
style: [
require('./$SELECTOR$.scss')
],
encapsulation: ViewEncapsulation.None,
directives: []
})
export class $CLASSNAME$ {
$END$
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment