mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
19 lines
488 B
TypeScript
19 lines
488 B
TypeScript
|
|
||
|
import {Component} from 'angular2/core';
|
||
|
import {MATERIAL_DIRECTIVES} from "ng2-material/all";
|
||
|
import {MATERIAL_BROWSER_PROVIDERS} from "ng2-material/all";
|
||
|
|
||
|
@Component({
|
||
|
selector: 'admin-new-user',
|
||
|
templateUrl: 'app/admin/newuser/new.user.admin.component.html',
|
||
|
styleUrls:['app/admin/newuser/new.user.admin.component.css'],
|
||
|
directives:[MATERIAL_DIRECTIVES],
|
||
|
providers:[MATERIAL_BROWSER_PROVIDERS]
|
||
|
})
|
||
|
export class NewUserComponent{
|
||
|
constructor() {
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|