mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-18 08:20:13 +01:00
20 lines
275 B
TypeScript
20 lines
275 B
TypeScript
|
|
import {Component, ViewEncapsulation} from 'angular2/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'typography',
|
||
|
|
pipes: [],
|
||
|
|
providers: [],
|
||
|
|
styles: [],
|
||
|
|
template: 'typography'
|
||
|
|
})
|
||
|
|
export class Typography {
|
||
|
|
|
||
|
|
constructor() {
|
||
|
|
}
|
||
|
|
|
||
|
|
ngOnInit() {
|
||
|
|
console.log('typography');
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|