mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
13 lines
211 B
TypeScript
13 lines
211 B
TypeScript
import {Component, ViewEncapsulation} from '@angular/core';
|
|
|
|
|
|
@Component({
|
|
selector: 'typography',
|
|
styles: [],
|
|
template: require('./typography.html'),
|
|
})
|
|
export class Typography {
|
|
|
|
constructor() {
|
|
}
|
|
}
|