mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-28 19:00:18 +01:00
8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
|
|
import {Component, ViewEncapsulation} from 'angular2/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'msg-center',
|
||
|
|
styles: [ require('./msgCenter.scss') ],
|
||
|
|
template: require('./msgCenter.html')
|
||
|
|
})
|
||
|
|
export class MsgCenter {}
|