ngx-admin/src/app/pages/ui/components/typography/typography.component.ts

20 lines
275 B
TypeScript
Raw Normal View History

2016-04-29 20:07:25 +03:00
import {Component, ViewEncapsulation} from 'angular2/core';
@Component({
selector: 'typography',
pipes: [],
providers: [],
styles: [],
template: 'typography'
})
export class Typography {
constructor() {
}
ngOnInit() {
console.log('typography');
}
}