2016-04-27 02:32:32 +08:00
|
|
|
|
|
|
|
import {Component} from 'angular2/core';
|
2016-04-28 04:37:07 +08:00
|
|
|
import {MATERIAL_DIRECTIVES} from "ng2-material/all";
|
|
|
|
import {MdDialogRef} from "ng2-material/components/dialog/dialog_ref";
|
2016-04-27 02:32:32 +08:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'admin-new-user',
|
|
|
|
templateUrl: 'app/admin/newuser/new.user.admin.component.html',
|
|
|
|
styleUrls:['app/admin/newuser/new.user.admin.component.css'],
|
2016-04-28 04:37:07 +08:00
|
|
|
directives:[MATERIAL_DIRECTIVES]
|
2016-04-27 02:32:32 +08:00
|
|
|
})
|
|
|
|
export class NewUserComponent{
|
2016-04-28 04:37:07 +08:00
|
|
|
constructor(private dialog: MdDialogRef) {
|
2016-04-27 02:32:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|