empty child component

This commit is contained in:
nixa 2016-04-29 20:07:25 +03:00
parent 32f4967d37
commit 0a4cc28447
5 changed files with 76 additions and 7 deletions

View file

@ -0,0 +1,19 @@
import {Component, ViewEncapsulation} from 'angular2/core';
@Component({
selector: 'typography',
pipes: [],
providers: [],
styles: [],
template: 'typography'
})
export class Typography {
constructor() {
}
ngOnInit() {
console.log('typography');
}
}