generator-angular2gen
Version:
A simple way to learn Angular2 with angular2gen !
11 lines • 361 B
text/typescript
/**
* Test Component <%= nameOfComponent %>
*/
import {<%= componentName %>Component} from "./<%= argsInKebab %>.component";
import {Component} from "@angular/core";
@Component({
selector: 'test-<%= argsInKebab %>',
template: '<sd-<%= argsInKebab %>></sd-<%= argsInKebab %>>',
directives: []
})
class Test<%= componentName %>Component {}